summaryrefslogtreecommitdiff
path: root/src/vim9execute.c
Commit message (Expand)AuthorAgeFilesLines
* patch 8.2.4678: Vim9: not all code is testedv8.2.4678Bram Moolenaar2022-04-031-0/+3
* patch 8.2.4662: no error for using out of range list indexv8.2.4662Bram Moolenaar2022-04-011-1/+1
* patch 8.2.4657: errors for functions are sometimes hard to readv8.2.4657Bram Moolenaar2022-03-311-11/+8
* patch 8.2.4652: leaking memory if assignment failsv8.2.4652Bram Moolenaar2022-03-311-0/+2
* patch 8.2.4650: "import autoload" only works with using 'runtimepath'v8.2.4650Bram Moolenaar2022-03-301-15/+94
* patch 8.2.4643: Vim9: variable may be locked unintentionallyv8.2.4643Bram Moolenaar2022-03-281-0/+1
* patch 8.2.4642: Vim9: in :def function script var cannot be nullv8.2.4642Bram Moolenaar2022-03-281-5/+7
* patch 8.2.4634: Vim9: cannot initialize a variable to null_listv8.2.4634Bram Moolenaar2022-03-271-55/+86
* patch 8.2.4602: Vim9: not enough test coverage for executing :def functionv8.2.4602Bram Moolenaar2022-03-201-22/+8
* patch 8.2.4600: Vim9: not enough test coverage for executing :def functionv8.2.4600Bram Moolenaar2022-03-201-8/+3
* patch 8.2.4590: Vim9: range type check has wrong offsetv8.2.4590Bram Moolenaar2022-03-181-60/+35
* patch 8.2.4587: Vim9: double free after unpacking a listv8.2.4587Bram Moolenaar2022-03-181-1/+4
* patch 8.2.4575: Vim9: test for profiling still failsv8.2.4575Bram Moolenaar2022-03-151-12/+8
* patch 8.2.4573: a nested function is compiled for debugging without contextv8.2.4573Bram Moolenaar2022-03-151-1/+1
* patch 8.2.4541: Crash in debugger when a variable is not availablev8.2.4541Bram Moolenaar2022-03-101-1/+4
* patch 8.2.4534: Vim9: "is" operator with empty string and null returns truev8.2.4534Bram Moolenaar2022-03-101-3/+2
* patch 8.2.4526: Vim9: cannot set variables to a null valuev8.2.4526Bram Moolenaar2022-03-081-0/+14
* patch 8.2.4487: Vim9: cannot compare with v:nullv8.2.4487Bram Moolenaar2022-03-011-0/+21
* patch 8.2.4484: Vim9: some error messages are not testedv8.2.4484Bram Moolenaar2022-02-281-5/+3
* patch 8.2.4446: Vim9: cannot refer to a global function like a local onev8.2.4446Bram Moolenaar2022-02-221-5/+22
* patch 8.2.4413: Vim9: Coverity warns for using NULL pointerv8.2.4413Bram Moolenaar2022-02-181-0/+6
* patch 8.2.4410: Vim9: some code not covered by testsv8.2.4410Bram Moolenaar2022-02-171-32/+4
* patch 8.2.4409: Vim9: some code not covered by testsv8.2.4409Bram Moolenaar2022-02-171-4/+8
* patch 8.2.4408: Vim9: some code not covered by testsv8.2.4408Bram Moolenaar2022-02-171-8/+16
* patch 8.2.4407: Vim9: some code not covered by testsv8.2.4407Bram Moolenaar2022-02-171-99/+95
* patch 8.2.4404: Vim9: some code not covered by testsv8.2.4404Bram Moolenaar2022-02-161-0/+10
* patch 8.2.4358: Vim9: line number of exception is not setv8.2.4358Bram Moolenaar2022-02-121-0/+1
* patch 8.2.4322: Vim9: crash when using funcref with closurev8.2.4322Bram Moolenaar2022-02-071-4/+23
* patch 8.2.4319: :put does not work properly in compiled functionv8.2.4319Bram Moolenaar2022-02-071-1/+6
* patch 8.2.4309: Vim9: crash when using a partial in the wrong contextv8.2.4309Bram Moolenaar2022-02-061-5/+9
* patch 8.2.4286: Vim9: strict type checking after copy() and deepcopy()v8.2.4286Bram Moolenaar2022-02-021-16/+3
* patch 8.2.4225: Vim9: depth argument of :lockvar not parsed in :def functionv8.2.4225Bram Moolenaar2022-01-261-2/+3
* patch 8.2.4216: Vim9: cannot use a function from an autoload import directlyv8.2.4216Bram Moolenaar2022-01-251-58/+105
* patch 8.2.4198: Vim9: the switch for executing instructions is too longv8.2.4198Bram Moolenaar2022-01-231-532/+584
* patch 8.2.4137: Vim9: calling import with and without method is inconsistentv8.2.4137Bram Moolenaar2022-01-181-22/+8
* patch 8.2.4131: Vim9: calling function in autoload import does not workv8.2.4131Bram Moolenaar2022-01-181-7/+31
* patch 8.2.4086: "cctx" argument of find_func_even_dead() is unusedv8.2.4086Bram Moolenaar2022-01-131-5/+5
* patch 8.2.4072: Vim9: compiling function fails when autoload is not loadedv8.2.4072Bram Moolenaar2022-01-121-0/+10
* patch 8.2.4043: using int for second argument of ga_init2()v8.2.4043Bram Moolenaar2022-01-081-1/+1
* patch 8.2.4042: Vim9: build errorv8.2.4042Bram Moolenaar2022-01-081-4/+5
* patch 8.2.4019: Vim9: import mechanism is too complicatedv8.2.4019Bram Moolenaar2022-01-061-2/+2
* patch 8.2.3974: Vim9: LISTAPPEND instruction does not check for a locked listv8.2.3974Bram Moolenaar2022-01-011-1/+3
* patch 8.2.3970: error messages are spread outv8.2.3970Bram Moolenaar2022-01-011-1/+1
* patch 8.2.3967: error messages are spread outv8.2.3967Bram Moolenaar2022-01-011-10/+10
* patch 8.2.3961: error messages are spread outv8.2.3961Bram Moolenaar2021-12-311-1/+1
* patch 8.2.3914: various spelling mistakes in commentsv8.2.3914Dominique Pelle2021-12-271-1/+1
* patch 8.2.3902: Vim9: double free with nested :def functionv8.2.3902Bram Moolenaar2021-12-261-1/+3
* patch 8.2.3893: Vim9: many local variables are initialized with an instructionv8.2.3893Bram Moolenaar2021-12-251-2/+12
* patch 8.2.3878: Vim9: debugger tries to read more lines than there arev8.2.3878Bram Moolenaar2021-12-231-1/+2
* patch 8.2.3865: Vim9: compiler complains about using "try" as a struct memberv8.2.3865Bram Moolenaar2021-12-211-4/+4