summaryrefslogtreecommitdiff
path: root/src/vim9type.c
Commit message (Expand)AuthorAgeFilesLines
* patch 8.2.3830: error messages are spread outv8.2.3830Bram Moolenaar2021-12-161-3/+3
* patch 8.2.3429: leaking memory when assigning to list or dictv8.2.3429Bram Moolenaar2021-09-111-1/+3
* patch 8.2.3382: crash when getting the type of a NULL partialv8.2.3382Bram Moolenaar2021-08-281-2/+3
* patch 8.2.3359: Vim9: error for type when variable is not setv8.2.3359Bram Moolenaar2021-08-191-0/+10
* patch 8.2.3322: Vim9: checking type of dict does not check member typev8.2.3322Bram Moolenaar2021-08-091-2/+6
* patch 8.2.3320: some local functions are not staticv8.2.3320Yegappan Lakshmanan2021-08-091-1/+1
* patch 8.2.3269: Vim9: wrong argument check for partialv8.2.3269Bram Moolenaar2021-08-011-0/+5
* patch 8.2.3249: Vim9: error for re-imported function with default argumentv8.2.3249Bram Moolenaar2021-07-291-5/+9
* patch 8.2.3200: Vim9: hard to guess where a type error is givenv8.2.3200Bram Moolenaar2021-07-221-10/+22
* patch 8.2.3134: crash when using typename() on a function referencev8.2.3134Bram Moolenaar2021-07-091-1/+1
* patch 8.2.3105: Vim9: type of partial is wrong when it has argumentsv8.2.3105Bram Moolenaar2021-07-041-0/+13
* patch 8.2.3104: Vim9: unspecified function type causes type errorv8.2.3104Bram Moolenaar2021-07-041-0/+1
* patch 8.2.3100: Vim9: no error when using type with unknown number of argsv8.2.3100Bram Moolenaar2021-07-041-5/+9
* patch 8.2.3035: Vim9: crash when calling :def function with partialv8.2.3035Bram Moolenaar2021-06-221-2/+2
* patch 8.2.2985: Vim9: a compiled function cannot be debuggedv8.2.2985Bram Moolenaar2021-06-131-1/+1
* patch 8.2.2842: Vim9: skip argument to searchpair() is not compiledv8.2.2842Bram Moolenaar2021-05-071-0/+2
* patch 8.2.2759: Vim9: for loop infers type of loop variablev8.2.2759Bram Moolenaar2021-04-131-10/+16
* patch 8.2.2621: typval2type() cannot handle recursive structuresv8.2.2621Bram Moolenaar2021-03-181-12/+20
* patch 8.2.2600: Vim9: crash when putting an unknown type in a dictionaryv8.2.2600Bram Moolenaar2021-03-131-2/+4
* patch 8.2.2501: not always clear where an error is reportedv8.2.2501Bram Moolenaar2021-02-111-14/+37
* patch 8.2.2486: Vim9: some errors for white space do not show contextv8.2.2486Bram Moolenaar2021-02-071-2/+3
* patch 8.2.2480: Vim9: some errors for white space do not show contextv8.2.2480Bram Moolenaar2021-02-071-2/+4
* patch 8.2.2400: Vim9: compiled functions are not profiledv8.2.2400Bram Moolenaar2021-01-241-1/+2
* patch 8.2.2362: Vim9: check of builtin function argument type is incompletev8.2.2362Bram Moolenaar2021-01-161-15/+5
* patch 8.2.2339: cannot get the type of a value as a stringv8.2.2339Bram Moolenaar2021-01-121-0/+25
* patch 8.2.2306: Vim9: when using function reference type is not checkedv8.2.2306Bram Moolenaar2021-01-061-0/+40
* patch 8.2.2283: Vim9: crash when lambda has fewer arguments than expectedv8.2.2283Bram Moolenaar2021-01-031-2/+3
* patch 8.2.2252: Vim9: crash when using lambda without return type in dictv8.2.2252Bram Moolenaar2020-12-311-1/+4
* patch 8.2.2224: Vim9: crash if script reloaded with different variable typev8.2.2224Bram Moolenaar2020-12-261-1/+1
* patch 8.2.2212: Vim9: lambda with => does not work at the script levelv8.2.2212Bram Moolenaar2020-12-251-0/+2
* patch 8.2.2210: Vim9: allocating a type to set TTFLAG_BOOL_OKv8.2.2210Bram Moolenaar2020-12-251-12/+3
* patch 8.2.2209: Vim9: return type of => lambda not parsedv8.2.2209Bram Moolenaar2020-12-251-32/+60
* patch 8.2.1996: Vim9: invalid error for argument of extend()v8.2.1996Bram Moolenaar2020-11-161-0/+14
* patch 8.2.1950: Vim9: crash when compiling function fails when getting typev8.2.1950Bram Moolenaar2020-11-041-2/+3
* patch 8.2.1795: Vim9: operators && and || have a confusing resultv8.2.1795Bram Moolenaar2020-10-031-7/+5
* patch 8.2.1794: no falsy Coalescing operatorv8.2.1794Bram Moolenaar2020-10-031-0/+4
* patch 8.2.1758: Vim9: type of unmaterialized list is wrongv8.2.1758Bram Moolenaar2020-09-271-5/+7
* patch 8.2.1722: Vim9: cannot assign a lambda to a variable of type functionv8.2.1722Bram Moolenaar2020-09-211-1/+5
* patch 8.2.1710: Vim9: list of list type can be wrongv8.2.1710Bram Moolenaar2020-09-191-1/+14
* patch 8.2.1691: Vim9: list<any> is not accepted where list<number> is expectedv8.2.1691Bram Moolenaar2020-09-161-22/+87
* patch 8.2.1650: Vim9: result of && and || expression is not bool in scriptv8.2.1650Bram Moolenaar2020-09-091-16/+44
* patch 8.2.1644: Vim9: cannot assign 1 and 0 to bool at script levelv8.2.1644Bram Moolenaar2020-09-091-6/+18
* patch 8.2.1641: Vim9: cannot use 0 or 1 where a bool is expectedv8.2.1641Bram Moolenaar2020-09-091-1/+5
* patch 8.2.1551: Vim9: error for argument type does not mention the numberv8.2.1551Bram Moolenaar2020-08-301-18/+21
* patch 8.2.1504: Vim9: white space checks are only done for a :def functionv8.2.1504Bram Moolenaar2020-08-211-4/+4
* patch 8.2.1460: error messages are spread outv8.2.1460Bram Moolenaar2020-08-151-8/+8
* patch 8.2.1451: Vim9: list type at script level only uses first itemv8.2.1451Bram Moolenaar2020-08-141-2/+11
* patch 8.2.1444: error messages are spread out and names can be confusingv8.2.1444Bram Moolenaar2020-08-131-4/+4
* patch 8.2.1407: Vim9: type of list and dict only depends on first itemv8.2.1407Bram Moolenaar2020-08-091-0/+36
* patch 8.2.1405: Vim9: vim9compile.c is getting too bigv8.2.1405Bram Moolenaar2020-08-091-0/+915