summaryrefslogtreecommitdiff
path: root/src/vim9compile.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* patch 8.2.4066: Vim9: imported autoload script loaded againv8.2.4066Bram Moolenaar2022-01-121-1/+3
* patch 8.2.4054: Vim9 script test failsv8.2.4054Bram Moolenaar2022-01-101-0/+12
* patch 8.2.4050: Vim9: need to prefix every item in an autoload scriptv8.2.4050Bram Moolenaar2022-01-091-6/+21
* patch 8.2.4045: some global functions are only used in one filev8.2.4045Yegappan Lakshmanan2022-01-081-21/+21
* patch 8.2.4040: keeping track of allocated lines is too complicatedv8.2.4040Bram Moolenaar2022-01-081-7/+10
* patch 8.2.4019: Vim9: import mechanism is too complicatedv8.2.4019Bram Moolenaar2022-01-061-0/+32
* patch 8.2.4016: Vim9: incorrect error for argument that is shadowing varv8.2.4016Bram Moolenaar2022-01-061-4/+2
* patch 8.2.4012: error messages are spread outv8.2.4012Bram Moolenaar2022-01-051-1/+1
* patch 8.2.4009: reading one byte beyond the end of the linev8.2.4009Bram Moolenaar2022-01-051-1/+2
* patch 8.2.3997: Vim9: not enough testing for extend() and map()v8.2.3997Bram Moolenaar2022-01-041-4/+2
* patch 8.2.3996: Vim9: type checking lacks information about declared typev8.2.3996Bram Moolenaar2022-01-041-15/+12
* patch 8.2.3991: Vim9: error when extending dict<any>v8.2.3991Bram Moolenaar2022-01-031-5/+0
* patch 8.2.3970: error messages are spread outv8.2.3970Bram Moolenaar2022-01-011-1/+1
* patch 8.2.3968: build failurev8.2.3968Bram Moolenaar2022-01-011-1/+1
* patch 8.2.3957: error messages are spread outv8.2.3957Bram Moolenaar2021-12-311-3/+3
* patch 8.2.3954: Vim9: no error for shadowing if script var is declared laterv8.2.3954Bram Moolenaar2021-12-311-0/+31
* patch 8.2.3951: Vim9: memory leak when text after a nested functionv8.2.3951Bram Moolenaar2021-12-301-0/+1
* patch 8.2.3924: Vim9: no error if something follows :enddefv8.2.3924Bram Moolenaar2021-12-281-1/+7
* patch 8.2.3902: Vim9: double free with nested :def functionv8.2.3902Bram Moolenaar2021-12-261-14/+20
* patch 8.2.3893: Vim9: many local variables are initialized with an instructionv8.2.3893Bram Moolenaar2021-12-251-2/+9
* patch 8.2.3869: Vim9: type checking for "any" is inconsistentv8.2.3869Bram Moolenaar2021-12-221-6/+8
* patch 8.2.3860: Vim9: codecov struggles with the file sizev8.2.3860Bram Moolenaar2021-12-201-7576/+79
* patch 8.2.3859: Vim9: some code lines not testedv8.2.3859Bram Moolenaar2021-12-201-7/+7