Mercurial > vim
annotate src/proto/typval.pro @ 24039:a5478836fcb7 v8.2.2561
patch 8.2.2561: not all textprop code is covered by tests
Commit: https://github.com/vim/vim/commit/3dc3474f00e529b014add48f7f3d1dad2ec15498
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Mar 2 13:36:47 2021 +0100
patch 8.2.2561: not all textprop code is covered by tests
Problem: Not all textprop code is covered by tests.
Solution: Add a few more test cases. (Dominique Pell?, closes https://github.com/vim/vim/issues/7908)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 02 Mar 2021 13:45:05 +0100 |
parents | d12ef361d9de |
children | 083f07f99e20 |
rev | line source |
---|---|
20587
f502455965c0
patch 8.2.0847: typval related code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1 /* typval.c */ |
f502455965c0
patch 8.2.0847: typval related code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2 typval_T *alloc_tv(void); |
f502455965c0
patch 8.2.0847: typval related code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
3 typval_T *alloc_string_tv(char_u *s); |
f502455965c0
patch 8.2.0847: typval related code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
4 void free_tv(typval_T *varp); |
f502455965c0
patch 8.2.0847: typval related code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
5 void clear_tv(typval_T *varp); |
f502455965c0
patch 8.2.0847: typval related code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
6 void init_tv(typval_T *varp); |
f502455965c0
patch 8.2.0847: typval related code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
7 varnumber_T tv_get_number(typval_T *varp); |
f502455965c0
patch 8.2.0847: typval related code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
8 varnumber_T tv_get_number_chk(typval_T *varp, int *denote); |
21851
727820154b1a
patch 8.2.1475: Vim9: can't use v:true for option flags
Bram Moolenaar <Bram@vim.org>
parents:
21120
diff
changeset
|
9 varnumber_T tv_get_bool(typval_T *varp); |
21861
cd8dafe937ba
patch 8.2.1480: Vim9: skip expression in search() gives error
Bram Moolenaar <Bram@vim.org>
parents:
21851
diff
changeset
|
10 varnumber_T tv_get_bool_chk(typval_T *varp, int *denote); |
20587
f502455965c0
patch 8.2.0847: typval related code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
11 float_T tv_get_float(typval_T *varp); |
23142
5f08d4a42898
patch 8.2.2117: some functions use any value as a string
Bram Moolenaar <Bram@vim.org>
parents:
22025
diff
changeset
|
12 int check_for_string(typval_T *tv); |
23175
d7294a6220ac
patch 8.2.2133: Vim9: checking for a non-empty string is too strict
Bram Moolenaar <Bram@vim.org>
parents:
23142
diff
changeset
|
13 int check_for_nonempty_string(typval_T *tv); |
20587
f502455965c0
patch 8.2.0847: typval related code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
14 char_u *tv_get_string(typval_T *varp); |
23786
0512923e54e1
patch 8.2.2434: Vim9: no error when compiling str2nr() with a number
Bram Moolenaar <Bram@vim.org>
parents:
23553
diff
changeset
|
15 char_u *tv_get_string_strict(typval_T *varp); |
20587
f502455965c0
patch 8.2.0847: typval related code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
16 char_u *tv_get_string_buf(typval_T *varp, char_u *buf); |
f502455965c0
patch 8.2.0847: typval related code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
17 char_u *tv_get_string_chk(typval_T *varp); |
f502455965c0
patch 8.2.0847: typval related code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
18 char_u *tv_get_string_buf_chk(typval_T *varp, char_u *buf); |
23786
0512923e54e1
patch 8.2.2434: Vim9: no error when compiling str2nr() with a number
Bram Moolenaar <Bram@vim.org>
parents:
23553
diff
changeset
|
19 char_u *tv_get_string_buf_chk_strict(typval_T *varp, char_u *buf, int strict); |
21120
4d844a65183d
patch 8.2.1111: inconsistent naming of get_list_tv() and eval_dict()
Bram Moolenaar <Bram@vim.org>
parents:
20587
diff
changeset
|
20 char_u *tv_stringify(typval_T *varp, char_u *buf); |
4d844a65183d
patch 8.2.1111: inconsistent naming of get_list_tv() and eval_dict()
Bram Moolenaar <Bram@vim.org>
parents:
20587
diff
changeset
|
21 int tv_check_lock(typval_T *tv, char_u *name, int use_gettext); |
4d844a65183d
patch 8.2.1111: inconsistent naming of get_list_tv() and eval_dict()
Bram Moolenaar <Bram@vim.org>
parents:
20587
diff
changeset
|
22 void copy_tv(typval_T *from, typval_T *to); |
23553
5c094273c015
patch 8.2.2319: "exptype_T" can be read as "expected type"
Bram Moolenaar <Bram@vim.org>
parents:
23175
diff
changeset
|
23 int typval_compare(typval_T *typ1, typval_T *typ2, exprtype_T type, int ic); |
23788
d12ef361d9de
patch 8.2.2435: setline() gives an error for some types
Bram Moolenaar <Bram@vim.org>
parents:
23786
diff
changeset
|
24 char_u *typval_tostring(typval_T *arg, int quotes); |
21120
4d844a65183d
patch 8.2.1111: inconsistent naming of get_list_tv() and eval_dict()
Bram Moolenaar <Bram@vim.org>
parents:
20587
diff
changeset
|
25 int tv_islocked(typval_T *tv); |
4d844a65183d
patch 8.2.1111: inconsistent naming of get_list_tv() and eval_dict()
Bram Moolenaar <Bram@vim.org>
parents:
20587
diff
changeset
|
26 int tv_equal(typval_T *tv1, typval_T *tv2, int ic, int recursive); |
4d844a65183d
patch 8.2.1111: inconsistent naming of get_list_tv() and eval_dict()
Bram Moolenaar <Bram@vim.org>
parents:
20587
diff
changeset
|
27 int eval_option(char_u **arg, typval_T *rettv, int evaluate); |
4d844a65183d
patch 8.2.1111: inconsistent naming of get_list_tv() and eval_dict()
Bram Moolenaar <Bram@vim.org>
parents:
20587
diff
changeset
|
28 int eval_number(char_u **arg, typval_T *rettv, int evaluate, int want_string); |
4d844a65183d
patch 8.2.1111: inconsistent naming of get_list_tv() and eval_dict()
Bram Moolenaar <Bram@vim.org>
parents:
20587
diff
changeset
|
29 int eval_string(char_u **arg, typval_T *rettv, int evaluate); |
4d844a65183d
patch 8.2.1111: inconsistent naming of get_list_tv() and eval_dict()
Bram Moolenaar <Bram@vim.org>
parents:
20587
diff
changeset
|
30 int eval_lit_string(char_u **arg, typval_T *rettv, int evaluate); |
4d844a65183d
patch 8.2.1111: inconsistent naming of get_list_tv() and eval_dict()
Bram Moolenaar <Bram@vim.org>
parents:
20587
diff
changeset
|
31 char_u *tv2string(typval_T *tv, char_u **tofree, char_u *numbuf, int copyID); |
4d844a65183d
patch 8.2.1111: inconsistent naming of get_list_tv() and eval_dict()
Bram Moolenaar <Bram@vim.org>
parents:
20587
diff
changeset
|
32 int eval_env_var(char_u **arg, typval_T *rettv, int evaluate); |
20587
f502455965c0
patch 8.2.0847: typval related code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
33 linenr_T tv_get_lnum(typval_T *argvars); |
f502455965c0
patch 8.2.0847: typval related code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
34 linenr_T tv_get_lnum_buf(typval_T *argvars, buf_T *buf); |
f502455965c0
patch 8.2.0847: typval related code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
35 buf_T *tv_get_buf(typval_T *tv, int curtab_only); |
22025
71f886a48ef5
patch 8.2.1562: Vim9: error when using "%" where a buffer is expected
Bram Moolenaar <Bram@vim.org>
parents:
21861
diff
changeset
|
36 buf_T *tv_get_buf_from_arg(typval_T *tv); |
20587
f502455965c0
patch 8.2.0847: typval related code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
37 /* vim: set ft=c : */ |