summaryrefslogtreecommitdiff
path: root/src/vim9execute.c
Commit message (Expand)AuthorAgeFilesLines
* patch 9.0.1211: storing value in interface member does not always workv9.0.1211Bram Moolenaar2023-01-161-2/+8
* patch 9.0.1209: getting interface member does not always workv9.0.1209Bram Moolenaar2023-01-161-1/+19
* patch 9.0.1150: :interface is not implemented yetv9.0.1150Bram Moolenaar2023-01-051-1/+1
* patch 9.0.1140: cannot call an object method in a compiled functionv9.0.1140Bram Moolenaar2023-01-031-2/+16
* patch 9.0.1135: missing function argumentv9.0.1135Bram Moolenaar2023-01-021-2/+3
* patch 9.0.1134: comparing objects uses identity instead of equalityv9.0.1134Bram Moolenaar2023-01-021-1/+17
* patch 9.0.1133: error message names do not match the itemsv9.0.1133Bram Moolenaar2023-01-021-7/+5
* patch 9.0.1119: type of arguments not checked when calling a partialv9.0.1119Bram Moolenaar2022-12-311-20/+41
* patch 9.0.1108: type error when using "any" type and adding to floatv9.0.1108Bram Moolenaar2022-12-291-3/+10
* patch 9.0.1093: using freed memory of object memberv9.0.1093Bram Moolenaar2022-12-241-2/+2
* patch 9.0.1074: class members are not supported yetv9.0.1074Bram Moolenaar2022-12-181-0/+34
* patch 9.0.1053: default constructor arguments are not optionalv9.0.1053Bram Moolenaar2022-12-131-7/+16
* patch 9.0.1045: in a class object members cannot be initializedv9.0.1045Bram Moolenaar2022-12-101-3/+17
* patch 9.0.1041: cannot define a method in a classv9.0.1041Bram Moolenaar2022-12-091-1/+42
* patch 9.0.1035: object members are not being marked as usedv9.0.1035Bram Moolenaar2022-12-081-0/+2
* patch 9.0.1031: Vim9 class is not implemented yetv9.0.1031Bram Moolenaar2022-12-081-6/+46
* patch 9.0.0949: crash when unletting a variable while listing variablesv9.0.0949Bram Moolenaar2022-11-251-1/+1
* patch 9.0.0828: various typosv9.0.0828dundargoc2022-11-021-4/+4
* patch 9.0.0683: cannot specify a time for :echowindowv9.0.0683Bram Moolenaar2022-10-071-4/+14
* patch 9.0.0632: calling a function from an "expr" option has overheadv9.0.0632Bram Moolenaar2022-10-011-2/+3
* patch 9.0.0617: calling function for reduce() has too much overheadv9.0.0617Bram Moolenaar2022-09-281-4/+9
* patch 9.0.0549: duplicated code in calling a :def functionv9.0.0549Bram Moolenaar2022-09-221-22/+12
* patch 9.0.0547: looping over empty out_loop[] entriesv9.0.0547Bram Moolenaar2022-09-221-6/+5
* patch 9.0.0504: still a build failurev9.0.0504Bram Moolenaar2022-09-191-3/+3
* patch 9.0.0502: a closure in a nested loop in a :def function does not workv9.0.0502Bram Moolenaar2022-09-191-68/+133
* patch 9.0.0499: in :def function list created after const is lockedv9.0.0499Bram Moolenaar2022-09-181-0/+1
* patch 9.0.0495: closure doesn't work properly in nested loopv9.0.0495Bram Moolenaar2022-09-181-2/+2
* patch 9.0.0491: no good reason to build without the float featurev9.0.0491Bram Moolenaar2022-09-171-24/+0
* patch 9.0.0487: using freed memory with combination of closuresv9.0.0487Bram Moolenaar2022-09-171-16/+21
* patch 9.0.0485: in :def function all closures in loop get the same variablesv9.0.0485Bram Moolenaar2022-09-171-13/+180
* patch 9.0.0481: in :def function all closures in loop get the same variablesv9.0.0481Bram Moolenaar2022-09-161-34/+93
* patch 9.0.0470: in :def function all closures in loop get the same variablesv9.0.0470Bram Moolenaar2022-09-151-16/+96
* patch 9.0.0440: crash when using mkdir() with "R" flag in compiled functionv9.0.0440Bram Moolenaar2022-09-111-4/+10
* patch 9.0.0432: crash when using for loop variable in closurev9.0.0432Bram Moolenaar2022-09-091-0/+6
* patch 9.0.0405: arguments in a partial not used by a :def functionv9.0.0405Bram Moolenaar2022-09-071-12/+21
* patch 9.0.0399: using :defer in expression funcref not testedv9.0.0399Bram Moolenaar2022-09-061-1/+22
* patch 9.0.0398: members of funccall_T are inconsistently namedv9.0.0398Bram Moolenaar2022-09-061-3/+3
* patch 9.0.0397: :defer not tested with exceptions and ":qa!"v9.0.0397Bram Moolenaar2022-09-061-9/+31
* patch 9.0.0382: freeing the wrong string on failurev9.0.0382Bram Moolenaar2022-09-051-5/+6
* patch 9.0.0379: cleaning up after writefile() is a hasslev9.0.0379Bram Moolenaar2022-09-041-16/+79
* patch 9.0.0373: Coverity warns for NULL check and unused return valuev9.0.0373Bram Moolenaar2022-09-041-3/+2
* patch 9.0.0370: cleaning up afterwards can make a function messyv9.0.0370Bram Moolenaar2022-09-031-15/+111
* patch 9.0.0350: :echowindow does not work in a compiled functionv9.0.0350Bram Moolenaar2022-09-011-0/+14
* patch 9.0.0056: wrong line number reported when :cexpr fails in :def functionBram Moolenaar2022-07-181-0/+1
* patch 9.0.0004: plural messages not translated properlyv9.0.0004Matvey Tarasov2022-06-291-16/+8
* patch 8.2.5006: asan warns for undefined behaviorv8.2.5006Bram Moolenaar2022-05-221-1/+1
* patch 8.2.5004: right shift on negative number does not work as documentedv8.2.5004Bram Moolenaar2022-05-221-6/+1
* patch 8.2.5003: cannot do bitwise shiftsv8.2.5003Yegappan Lakshmanan2022-05-221-0/+28
* patch 8.2.4995: still a compiler warning for possibly uninitialized variablev8.2.4995Bram Moolenaar2022-05-211-2/+2
* patch 8.2.4992: compiler warning for possibly uninitialized variablev8.2.4992Bram Moolenaar2022-05-211-1/+1