summaryrefslogtreecommitdiffstats
path: root/src/vim9instr.c
AgeCommit message (Expand)Author
2023-08-27patch 9.0.1805: Vim9: problem compiling object method as function call argv9.0.1805Yegappan Lakshmanan
2023-08-27patch 9.0.1796: Vim9 problems with null_objectsv9.0.1796Ernie Rael
2023-08-17patch 9.0.1724: vim9class constructor argument type checking bugv9.0.1724h-east
2023-04-27patch 9.0.1492: using uninitialized memory when argument is missingv9.0.1492Bram Moolenaar
2023-04-01patch 9.0.1436: cannot compare a typed variable with v:nonev9.0.1436Bram Moolenaar
2023-02-27patch 9.0.1358: compilation error with some compilersv9.0.1358Bram Moolenaar
2023-02-26patch 9.0.1357: using null_object results in an internal errorv9.0.1357Bram Moolenaar
2023-02-08patch 9.0.1292: :defer may call the wrong method for an objectv9.0.1292Bram Moolenaar
2023-01-29patch 9.0.1260: Coverity warns for possible NULL pointer usagev9.0.1260Bram Moolenaar
2023-01-28patch 9.0.1254: calling a method on an interface does not workv9.0.1254Bram Moolenaar
2023-01-27patch 9.0.1250: cannot use an object method with :deferv9.0.1250Bram Moolenaar
2023-01-26patch 9.0.1246: code is indented more than necessaryv9.0.1246Yegappan Lakshmanan
2023-01-16patch 9.0.1211: storing value in interface member does not always workv9.0.1211Bram Moolenaar
2023-01-16patch 9.0.1209: getting interface member does not always workv9.0.1209Bram Moolenaar
2023-01-15patch 9.0.1203: return type of values() is always list<any>v9.0.1203Bram Moolenaar
2023-01-03patch 9.0.1138: crash when expecting varargs but it is something elsev9.0.1138Bram Moolenaar
2023-01-02patch 9.0.1134: comparing objects uses identity instead of equalityv9.0.1134Bram Moolenaar
2022-12-30patch 9.0.1109: leaking allocated typev9.0.1109Bram Moolenaar
2022-12-29patch 9.0.1108: type error when using "any" type and adding to floatv9.0.1108Bram Moolenaar
2022-12-18patch 9.0.1075: build fails if compiler doesn't allow declaration after casev9.0.1075Bram Moolenaar
2022-12-18patch 9.0.1074: class members are not supported yetv9.0.1074Bram Moolenaar
2022-12-13patch 9.0.1053: default constructor arguments are not optionalv9.0.1053Bram Moolenaar
2022-12-10patch 9.0.1045: in a class object members cannot be initializedv9.0.1045Bram Moolenaar
2022-12-09patch 9.0.1041: cannot define a method in a classv9.0.1041Bram Moolenaar
2022-12-08patch 9.0.1031: Vim9 class is not implemented yetv9.0.1031Bram Moolenaar
2022-10-08patch 9.0.0695: failing check for dictionary type for const anyv9.0.0695Bram Moolenaar
2022-10-07patch 9.0.0684: skipped :exe command fails compilation on MS-Windowsv9.0.0684Bram Moolenaar
2022-10-07patch 9.0.0683: cannot specify a time for :echowindowv9.0.0683Bram Moolenaar
2022-09-29patch 9.0.0623: error for modifying a const is not detected at compile timev9.0.0623Bram Moolenaar
2022-09-19patch 9.0.0502: a closure in a nested loop in a :def function does not workv9.0.0502Bram Moolenaar
2022-09-17patch 9.0.0491: no good reason to build without the float featurev9.0.0491Bram Moolenaar
2022-09-16patch 9.0.0481: in :def function all closures in loop get the same variablesv9.0.0481Bram Moolenaar
2022-09-15patch 9.0.0470: in :def function all closures in loop get the same variablesv9.0.0470Bram Moolenaar
2022-09-08patch 9.0.0419: the :defer command does not check the function argumentsv9.0.0419Bram Moolenaar
2022-09-04patch 9.0.0376: clang warns for dead assignmentsv9.0.0376Yegappan Lakshmanan
2022-09-03patch 9.0.0370: cleaning up afterwards can make a function messyv9.0.0370Bram Moolenaar
2022-09-01patch 9.0.0353: missing entry in switchv9.0.0353Bram Moolenaar
2022-05-25patch 8.2.5018: Vim9: some code is not covered by testsv8.2.5018Bram Moolenaar
2022-05-17patch 8.2.4973: Vim9: type error for list unpack mentions argumentv8.2.4973Bram Moolenaar
2022-05-10patch 8.2.4930: interpolated string expression requires escapingv8.2.4930Bram Moolenaar
2022-05-04patch 8.2.4863: accessing freed memory in test without the +channel featurev8.2.4863Bram Moolenaar
2022-04-27patch 8.2.4834: Vim9: some lines not covered by testsv8.2.4834Bram Moolenaar
2022-04-25patch 8.2.4823: concat more than 2 strings in :def function is inefficientv8.2.4823LemonBoy
2022-03-31patch 8.2.4657: errors for functions are sometimes hard to readv8.2.4657Bram Moolenaar
2022-03-31patch 8.2.4656: Vim9: can't use item from "import autoload" with autoload dirv8.2.4656Bram Moolenaar
2022-03-30patch 8.2.4650: "import autoload" only works with using 'runtimepath'v8.2.4650Bram Moolenaar
2022-03-27patch 8.2.4634: Vim9: cannot initialize a variable to null_listv8.2.4634Bram Moolenaar
2022-03-23patch 8.2.4612: Vim9: cannot use a recursive call in a nested functionv8.2.4612Bram Moolenaar
2022-03-20patch 8.2.4602: Vim9: not enough test coverage for executing :def functionv8.2.4602Bram Moolenaar
2022-03-15patch 8.2.4576: Vim9: error for comparing with null can be annoyingv8.2.4576Bram Moolenaar