summaryrefslogtreecommitdiff
path: root/src/vim9compile.c
Commit message (Expand)AuthorAgeFilesLines
* patch 8.2.5026: Vim9: a few lines not covered by testsv8.2.5026Bram Moolenaar2022-05-261-1/+3
* patch 8.2.5018: Vim9: some code is not covered by testsv8.2.5018Bram Moolenaar2022-05-251-1/+1
* patch 8.2.4973: Vim9: type error for list unpack mentions argumentv8.2.4973Bram Moolenaar2022-05-171-1/+2
* patch 8.2.4940: some code is never usedv8.2.4940Bram Moolenaar2022-05-121-1/+1
* patch 8.2.4930: interpolated string expression requires escapingv8.2.4930Bram Moolenaar2022-05-101-19/+33
* patch 8.2.4928: various white space and cosmetic mistakesv8.2.4928Bram Moolenaar2022-05-091-1/+1
* patch 8.2.4914: string interpolation in :def function may failv8.2.4914Bram Moolenaar2022-05-081-4/+0
* patch 8.2.4898: Coverity complains about pointer usagev8.2.4898Bram Moolenaar2022-05-071-14/+17
* patch 8.2.4883: string interpolation only works in heredocv8.2.4883LemonBoy2022-05-061-55/+78
* patch 8.2.4871: Vim9: in :def function no error for misplaced rangev8.2.4871Bram Moolenaar2022-05-051-0/+5
* patch 8.2.4863: accessing freed memory in test without the +channel featurev8.2.4863Bram Moolenaar2022-05-041-10/+14
* patch 8.2.4823: concat more than 2 strings in :def function is inefficientv8.2.4823LemonBoy2022-04-251-7/+8
* patch 8.2.4804: expression in heredoc doesn't work for compiled functionv8.2.4804Yegappan Lakshmanan2022-04-211-12/+79
* patch 8.2.4666: Vim9: assignment not recognized in skipped blockv8.2.4666Bram Moolenaar2022-04-021-25/+37
* patch 8.2.4634: Vim9: cannot initialize a variable to null_listv8.2.4634Bram Moolenaar2022-03-271-3/+3
* patch 8.2.4612: Vim9: cannot use a recursive call in a nested functionv8.2.4612Bram Moolenaar2022-03-231-18/+25
* patch 8.2.4602: Vim9: not enough test coverage for executing :def functionv8.2.4602Bram Moolenaar2022-03-201-2/+2
* patch 8.2.4590: Vim9: range type check has wrong offsetv8.2.4590Bram Moolenaar2022-03-181-1/+1
* patch 8.2.4589: cannot index the g: dictionaryv8.2.4589Bram Moolenaar2022-03-181-4/+11
* patch 8.2.4575: Vim9: test for profiling still failsv8.2.4575Bram Moolenaar2022-03-151-2/+25
* patch 8.2.4573: a nested function is compiled for debugging without contextv8.2.4573Bram Moolenaar2022-03-151-0/+8
* patch 8.2.4556: test fails without the +job or +channel featurev8.2.4556Bram Moolenaar2022-03-131-1/+3
* patch 8.2.4539: when comparing special v:none and v:null are handled the samev8.2.4539Bram Moolenaar2022-03-101-1/+1
* patch 8.2.4526: Vim9: cannot set variables to a null valuev8.2.4526Bram Moolenaar2022-03-081-1/+5
* patch 8.2.4510: Vim9: shortening commands leads to confusing scriptv8.2.4510Bram Moolenaar2022-03-051-7/+0
* patch 8.2.4509: Vim9: can declare a variable with ":va"v8.2.4509Bram Moolenaar2022-03-051-1/+8
* patch 8.2.4460: Vim9: wrong error for defining dict functionv8.2.4460Bram Moolenaar2022-02-231-1/+5
* patch 8.2.4447: Vim9: can still use s:var in a compiled functionv8.2.4447Bram Moolenaar2022-02-221-0/+6
* patch 8.2.4426: map() function on string and blob does not check typesv8.2.4426Bram Moolenaar2022-02-201-2/+5
* patch 8.2.4395: some code lines not covered by testsv8.2.4395Bram Moolenaar2022-02-151-1/+4
* patch 8.2.4390: Vim9: list from declaration with inferred type not setv8.2.4390Bram Moolenaar2022-02-151-1/+15
* patch 8.2.4384: Vim9: error message not tested, some code not testedv8.2.4384Bram Moolenaar2022-02-141-7/+1
* patch 8.2.4383: Vim9: unused code linesv8.2.4383Bram Moolenaar2022-02-141-16/+11
* patch 8.2.4375: ctx_imports is not usedv8.2.4375Bram Moolenaar2022-02-131-44/+7
* patch 8.2.4374: unreachable codev8.2.4374Bram Moolenaar2022-02-131-21/+1
* patch 8.2.4360: Vim9: allowing use of "s:" leads to inconsistenciesv8.2.4360Bram Moolenaar2022-02-121-1/+1
* patch 8.2.4333: cstack not always passed to where it is neededv8.2.4333Bram Moolenaar2022-02-081-3/+8
* patch 8.2.4332: Vim9: incomplete test for existing script variable in blockv8.2.4332Bram Moolenaar2022-02-081-16/+35
* patch 8.2.4324: Vim9: script-local function name can start with "_"v8.2.4324Bram Moolenaar2022-02-071-1/+1
* patch 8.2.4323: Vim9: nested function name can start with "_"v8.2.4323Bram Moolenaar2022-02-071-0/+5
* patch 8.2.4314: test fails where lines are skippedv8.2.4314Bram Moolenaar2022-02-061-2/+7
* patch 8.2.4312: no error for using :vim9script in a :def functionv8.2.4312Bram Moolenaar2022-02-061-0/+4
* patch 8.2.4285: Vim9: type of item in for loop not checked properlyv8.2.4285Bram Moolenaar2022-02-021-1/+1
* patch 8.2.4202: Vim9: cannot export function that exists globallyv8.2.4202Bram Moolenaar2022-01-241-1/+1
* patch 8.2.4177: Vim9: autoload script not loaded after "vim9script noclear"v8.2.4177Bram Moolenaar2022-01-221-2/+2
* patch 8.2.4147: E464 does not always include the offending commandv8.2.4147Bram Moolenaar2022-01-191-1/+1
* patch 8.2.4103: Vim9: variable declared in for loop not initialzedv8.2.4103Bram Moolenaar2022-01-151-3/+8
* patch 8.2.4097: wrong number in error message on 32 bit systemv8.2.4097Bram Moolenaar2022-01-151-1/+1
* patch 8.2.4086: "cctx" argument of find_func_even_dead() is unusedv8.2.4086Bram Moolenaar2022-01-131-2/+2
* patch 8.2.4071: Vim9: no detection of return in try/endtryv8.2.4071Bram Moolenaar2022-01-121-1/+0