summaryrefslogtreecommitdiff
path: root/src/vim9instr.c
Commit message (Expand)AuthorAgeFilesLines
* patch 9.0.1492: using uninitialized memory when argument is missingv9.0.1492Bram Moolenaar2023-04-271-1/+7
* patch 9.0.1436: cannot compare a typed variable with v:nonev9.0.1436Bram Moolenaar2023-04-011-8/+12
* patch 9.0.1358: compilation error with some compilersv9.0.1358Bram Moolenaar2023-02-271-2/+2
* patch 9.0.1357: using null_object results in an internal errorv9.0.1357Bram Moolenaar2023-02-261-1/+47
* patch 9.0.1292: :defer may call the wrong method for an objectv9.0.1292Bram Moolenaar2023-02-081-3/+15
* patch 9.0.1260: Coverity warns for possible NULL pointer usagev9.0.1260Bram Moolenaar2023-01-291-1/+1
* patch 9.0.1254: calling a method on an interface does not workv9.0.1254Bram Moolenaar2023-01-281-6/+31
* patch 9.0.1250: cannot use an object method with :deferv9.0.1250Bram Moolenaar2023-01-271-4/+11
* patch 9.0.1246: code is indented more than necessaryv9.0.1246Yegappan Lakshmanan2023-01-261-30/+30
* patch 9.0.1211: storing value in interface member does not always workv9.0.1211Bram Moolenaar2023-01-161-1/+4
* patch 9.0.1209: getting interface member does not always workv9.0.1209Bram Moolenaar2023-01-161-0/+21
* patch 9.0.1203: return type of values() is always list<any>v9.0.1203Bram Moolenaar2023-01-151-1/+2
* patch 9.0.1138: crash when expecting varargs but it is something elsev9.0.1138Bram Moolenaar2023-01-031-1/+7
* patch 9.0.1134: comparing objects uses identity instead of equalityv9.0.1134Bram Moolenaar2023-01-021-5/+16
* patch 9.0.1109: leaking allocated typev9.0.1109Bram Moolenaar2022-12-301-0/+1
* patch 9.0.1108: type error when using "any" type and adding to floatv9.0.1108Bram Moolenaar2022-12-291-8/+24
* patch 9.0.1075: build fails if compiler doesn't allow declaration after casev9.0.1075Bram Moolenaar2022-12-181-18/+21
* patch 9.0.1074: class members are not supported yetv9.0.1074Bram Moolenaar2022-12-181-6/+48
* patch 9.0.1053: default constructor arguments are not optionalv9.0.1053Bram Moolenaar2022-12-131-3/+4
* patch 9.0.1045: in a class object members cannot be initializedv9.0.1045Bram Moolenaar2022-12-101-5/+25
* patch 9.0.1041: cannot define a method in a classv9.0.1041Bram Moolenaar2022-12-091-0/+18
* patch 9.0.1031: Vim9 class is not implemented yetv9.0.1031Bram Moolenaar2022-12-081-0/+22
* patch 9.0.0695: failing check for dictionary type for const anyv9.0.0695Bram Moolenaar2022-10-081-2/+3
* patch 9.0.0684: skipped :exe command fails compilation on MS-Windowsv9.0.0684Bram Moolenaar2022-10-071-0/+1
* patch 9.0.0683: cannot specify a time for :echowindowv9.0.0683Bram Moolenaar2022-10-071-0/+14
* patch 9.0.0623: error for modifying a const is not detected at compile timev9.0.0623Bram Moolenaar2022-09-291-1/+5
* patch 9.0.0502: a closure in a nested loop in a :def function does not workv9.0.0502Bram Moolenaar2022-09-191-21/+23
* patch 9.0.0491: no good reason to build without the float featurev9.0.0491Bram Moolenaar2022-09-171-13/+1
* patch 9.0.0481: in :def function all closures in loop get the same variablesv9.0.0481Bram Moolenaar2022-09-161-27/+94
* patch 9.0.0470: in :def function all closures in loop get the same variablesv9.0.0470Bram Moolenaar2022-09-151-1/+43
* patch 9.0.0419: the :defer command does not check the function argumentsv9.0.0419Bram Moolenaar2022-09-081-64/+105
* patch 9.0.0376: clang warns for dead assignmentsv9.0.0376Yegappan Lakshmanan2022-09-041-16/+4
* patch 9.0.0370: cleaning up afterwards can make a function messyv9.0.0370Bram Moolenaar2022-09-031-16/+36
* patch 9.0.0353: missing entry in switchv9.0.0353Bram Moolenaar2022-09-011-0/+1
* patch 8.2.5018: Vim9: some code is not covered by testsv8.2.5018Bram Moolenaar2022-05-251-123/+98
* patch 8.2.4973: Vim9: type error for list unpack mentions argumentv8.2.4973Bram Moolenaar2022-05-171-1/+3
* patch 8.2.4930: interpolated string expression requires escapingv8.2.4930Bram Moolenaar2022-05-101-0/+2
* patch 8.2.4863: accessing freed memory in test without the +channel featurev8.2.4863Bram Moolenaar2022-05-041-0/+14
* patch 8.2.4834: Vim9: some lines not covered by testsv8.2.4834Bram Moolenaar2022-04-271-1/+0
* patch 8.2.4823: concat more than 2 strings in :def function is inefficientv8.2.4823LemonBoy2022-04-251-0/+27
* patch 8.2.4657: errors for functions are sometimes hard to readv8.2.4657Bram Moolenaar2022-03-311-3/+3
* patch 8.2.4656: Vim9: can't use item from "import autoload" with autoload dirv8.2.4656Bram Moolenaar2022-03-311-1/+3
* patch 8.2.4650: "import autoload" only works with using 'runtimepath'v8.2.4650Bram Moolenaar2022-03-301-22/+53
* patch 8.2.4634: Vim9: cannot initialize a variable to null_listv8.2.4634Bram Moolenaar2022-03-271-7/+9
* patch 8.2.4612: Vim9: cannot use a recursive call in a nested functionv8.2.4612Bram Moolenaar2022-03-231-1/+4
* patch 8.2.4602: Vim9: not enough test coverage for executing :def functionv8.2.4602Bram Moolenaar2022-03-201-24/+8
* patch 8.2.4576: Vim9: error for comparing with null can be annoyingv8.2.4576Bram Moolenaar2022-03-151-14/+2
* patch 8.2.4575: Vim9: test for profiling still failsv8.2.4575Bram Moolenaar2022-03-151-4/+8
* patch 8.2.4539: when comparing special v:none and v:null are handled the samev8.2.4539Bram Moolenaar2022-03-101-31/+50
* patch 8.2.4529: Vim9: comparing partial with function failsv8.2.4529Bram Moolenaar2022-03-081-1/+3