summaryrefslogtreecommitdiff
path: root/src/vim9expr.c
Commit message (Expand)AuthorAgeFilesLines
* patch 8.2.5018: Vim9: some code is not covered by testsv8.2.5018Bram Moolenaar2022-05-251-1/+1
* patch 8.2.5006: asan warns for undefined behaviorv8.2.5006Bram Moolenaar2022-05-221-1/+2
* patch 8.2.5005: compiler warning for uninitialized variablev8.2.5005Bram Moolenaar2022-05-221-6/+5
* patch 8.2.5004: right shift on negative number does not work as documentedv8.2.5004Bram Moolenaar2022-05-221-5/+2
* patch 8.2.5003: cannot do bitwise shiftsv8.2.5003Yegappan Lakshmanan2022-05-221-12/+143
* patch 8.2.4972: Vim9: compilation fails when using dict member when skippingv8.2.4972Bram Moolenaar2022-05-171-1/+2
* patch 8.2.4949: Vim9: some code not covered by testsv8.2.4949Bram Moolenaar2022-05-131-1/+3
* patch 8.2.4946: Vim9: some code not covered by testsv8.2.4946Bram Moolenaar2022-05-121-7/+1
* patch 8.2.4940: some code is never usedv8.2.4940Bram Moolenaar2022-05-121-14/+8
* patch 8.2.4930: interpolated string expression requires escapingv8.2.4930Bram Moolenaar2022-05-101-14/+57
* patch 8.2.4883: string interpolation only works in heredocv8.2.4883LemonBoy2022-05-061-1/+32
* patch 8.2.4870: Vim9: expression in :substitute is not compiledv8.2.4870LemonBoy2022-05-051-13/+44
* patch 8.2.4823: concat more than 2 strings in :def function is inefficientv8.2.4823LemonBoy2022-04-251-1/+2
* patch 8.2.4669: in compiled code len('string') is not inlinedv8.2.4669LemonBoy2022-04-021-2/+7
* patch 8.2.4661: Coverity warning for using uninitialized variablev8.2.4661Bram Moolenaar2022-04-011-1/+1
* patch 8.2.4657: errors for functions are sometimes hard to readv8.2.4657Bram Moolenaar2022-03-311-4/+4
* patch 8.2.4656: Vim9: can't use item from "import autoload" with autoload dirv8.2.4656Bram Moolenaar2022-03-311-24/+30
* patch 8.2.4650: "import autoload" only works with using 'runtimepath'v8.2.4650Bram Moolenaar2022-03-301-0/+21
* patch 8.2.4634: Vim9: cannot initialize a variable to null_listv8.2.4634Bram Moolenaar2022-03-271-2/+2
* patch 8.2.4612: Vim9: cannot use a recursive call in a nested functionv8.2.4612Bram Moolenaar2022-03-231-1/+1
* patch 8.2.4580: Vim9: incorrect error for shadowing variablev8.2.4580Bram Moolenaar2022-03-161-1/+1
* patch 8.2.4575: Vim9: test for profiling still failsv8.2.4575Bram Moolenaar2022-03-151-8/+11
* patch 8.2.4573: a nested function is compiled for debugging without contextv8.2.4573Bram Moolenaar2022-03-151-0/+8
* patch 8.2.4526: Vim9: cannot set variables to a null valuev8.2.4526Bram Moolenaar2022-03-081-6/+12
* patch 8.2.4447: Vim9: can still use s:var in a compiled functionv8.2.4447Bram Moolenaar2022-02-221-2/+9
* patch 8.2.4375: ctx_imports is not usedv8.2.4375Bram Moolenaar2022-02-131-3/+3
* patch 8.2.4333: cstack not always passed to where it is neededv8.2.4333Bram Moolenaar2022-02-081-2/+2
* patch 8.2.4332: Vim9: incomplete test for existing script variable in blockv8.2.4332Bram Moolenaar2022-02-081-1/+1
* patch 8.2.4313: Vim9: cannot change type of list after making a slicev8.2.4313Bram Moolenaar2022-02-061-0/+3
* patch 8.2.4296: Vim9: not all code covered by testsv8.2.4296Bram Moolenaar2022-02-041-1/+3
* patch 8.2.4280: list-dict test crashesv8.2.4280Bram Moolenaar2022-02-011-1/+1
* patch 8.2.4260: Vim9: can still use a global function without g:v8.2.4260Bram Moolenaar2022-01-301-6/+7
* patch 8.2.4257: Vim9: finding global function without g: prefix inconsistentv8.2.4257Bram Moolenaar2022-01-291-11/+23
* patch 8.2.4216: Vim9: cannot use a function from an autoload import directlyv8.2.4216Bram Moolenaar2022-01-251-2/+3
* patch 8.2.4161: Vim9: warning for missing white space after imported variablev8.2.4161Bram Moolenaar2022-01-201-1/+0
* patch 8.2.4146: Vim9: shadowed function can be used in compiled functionv8.2.4146Bram Moolenaar2022-01-191-6/+15
* patch 8.2.4137: Vim9: calling import with and without method is inconsistentv8.2.4137Bram Moolenaar2022-01-181-2/+11
* patch 8.2.4124: Vim9: method in compiled function may not see script itemv8.2.4124Bram Moolenaar2022-01-171-8/+15
* patch 8.2.4116: Vim9: cannot use a method with a complex expression in :defv8.2.4116Bram Moolenaar2022-01-161-29/+69
* patch 8.2.4086: "cctx" argument of find_func_even_dead() is unusedv8.2.4086Bram Moolenaar2022-01-131-4/+4
* patch 8.2.4072: Vim9: compiling function fails when autoload is not loadedv8.2.4072Bram Moolenaar2022-01-121-1/+23
* patch 8.2.4050: Vim9: need to prefix every item in an autoload scriptv8.2.4050Bram Moolenaar2022-01-091-2/+3
* patch 8.2.4049: Vim9: reading before the start of the line with "$"v8.2.4049Bram Moolenaar2022-01-091-1/+1
* patch 8.2.4019: Vim9: import mechanism is too complicatedv8.2.4019Bram Moolenaar2022-01-061-49/+40
* patch 8.2.3996: Vim9: type checking lacks information about declared typev8.2.3996Bram Moolenaar2022-01-041-44/+67
* patch 8.2.3972: error messages are spread outv8.2.3972Bram Moolenaar2022-01-011-1/+1
* patch 8.2.3970: error messages are spread outv8.2.3970Bram Moolenaar2022-01-011-5/+5
* patch 8.2.3967: error messages are spread outv8.2.3967Bram Moolenaar2022-01-011-1/+1
* patch 8.2.3913: help for expressions does not mention Vim9 syntaxv8.2.3913Bram Moolenaar2021-12-271-6/+6
* patch 8.2.3869: Vim9: type checking for "any" is inconsistentv8.2.3869Bram Moolenaar2021-12-221-1/+2