summaryrefslogtreecommitdiff
path: root/src/testdir/test_vim9_assign.vim
Commit message (Expand)AuthorAgeFilesLines
* patch 8.2.2565: Vim9: "..=" not always recognizedv8.2.2565Bram Moolenaar2021-03-031-0/+38
* patch 8.2.2533: Vim9: cannot use a range with :unletv8.2.2533Bram Moolenaar2021-02-201-0/+46
* patch 8.2.2528: Vim9: crash when compiling lambda failsv8.2.2528Bram Moolenaar2021-02-171-0/+5
* patch 8.2.2527: Vim9: lambda return type is not determined at script levelv8.2.2527Bram Moolenaar2021-02-171-2/+3
* patch 8.2.2501: not always clear where an error is reportedv8.2.2501Bram Moolenaar2021-02-111-0/+8
* patch 8.2.2395: Vim9: error for wrong type may report wrong line numberv8.2.2395Bram Moolenaar2021-01-231-0/+2
* patch 8.2.2381: Vim9: divide by zero does not abort expression executionv8.2.2381Bram Moolenaar2021-01-211-0/+24
* patch 8.2.2373: Vim9: list assignment only accepts a number indexv8.2.2373Bram Moolenaar2021-01-171-2/+11
* patch 8.2.2365: Vim9: no check for map() changing item type at script levelv8.2.2365Bram Moolenaar2021-01-161-1/+1
* patch 8.2.2331: Vim9: wrong error when modifying dict declared with :finalv8.2.2331Bram Moolenaar2021-01-111-0/+16
* patch 8.2.2317: Vim9: command modifier before list unpack doesn't workv8.2.2317Bram Moolenaar2021-01-091-15/+21
* patch 8.2.2311: Vim9: cannot assign to variable that shadows command modifierv8.2.2311Bram Moolenaar2021-01-071-0/+21
* patch 8.2.2308: Vim9: no error when assigning lambda to funcrefv8.2.2308Bram Moolenaar2021-01-071-0/+7
* patch 8.2.2304: Vim9: no test for unletting an imported variablev8.2.2304Bram Moolenaar2021-01-051-12/+37
* patch 8.2.2301: Vim9: cannot unlet a dict or list itemv8.2.2301Bram Moolenaar2021-01-041-7/+40
* patch 8.2.2297: Vim9: cannot set 'number' to a boolean valuev8.2.2297Bram Moolenaar2021-01-041-0/+9
* patch 8.2.2290: Vim9: unlet of global variable cannot be compiledv8.2.2290Bram Moolenaar2021-01-031-0/+9
* patch 8.2.2268: Vim9: list unpack seen as declarationv8.2.2268Bram Moolenaar2021-01-011-4/+26
* patch 8.2.2267: Vim9: cannot use unlet for a dict memberv8.2.2267Bram Moolenaar2021-01-011-12/+32
* patch 8.2.2257: Vim9: using -> for lambda is ambiguousv8.2.2257Bram Moolenaar2020-12-311-4/+4
* patch 8.2.2254: Vim9: bool option type is numberv8.2.2254Bram Moolenaar2020-12-311-0/+5
* patch 8.2.2212: Vim9: lambda with => does not work at the script levelv8.2.2212Bram Moolenaar2020-12-251-3/+3
* patch 8.2.2194: Vim9: cannot use :const or :final at the script levelv8.2.2194Bram Moolenaar2020-12-221-0/+46
* patch 8.2.2179: Vim9: crash when indexing a dict with a numberv8.2.2179Bram Moolenaar2020-12-211-2/+28
* patch 8.2.2168: Vim9: error for assigning to dict of dictv8.2.2168Bram Moolenaar2020-12-201-0/+6
* patch 8.2.2167: Vim9: assign test failsv8.2.2167Bram Moolenaar2020-12-201-1/+15
* patch 8.2.2159: Vim9: when declaring a list it is not allocated yetv8.2.2159Bram Moolenaar2020-12-181-1/+12
* patch 8.2.2157: Vim9: can delete a Vim9 script variable from a functionv8.2.2157Bram Moolenaar2020-12-181-0/+8
* patch 8.2.2139: Vim9: unreachable code in assignmentv8.2.2139Bram Moolenaar2020-12-131-0/+12
* patch 8.2.2138: Vim9: "exit_cb" causes Vim to exitv8.2.2138Bram Moolenaar2020-12-131-1/+12
* patch 8.2.2115: Vim9: some errors not tested for; dead codev8.2.2115Bram Moolenaar2020-12-081-0/+7
* patch 8.2.2108: Vim9: no test to check for :let errorv8.2.2108Bram Moolenaar2020-12-081-6/+10
* patch 8.2.2107: Vim9: some errors not testedv8.2.2107Bram Moolenaar2020-12-071-1/+40
* patch 8.2.2092: Vim9: unpredictable errors for script testsv8.2.2092Bram Moolenaar2020-12-051-0/+1
* patch 8.2.2082: Vim9: can still use the depricated #{} dict syntaxv8.2.2082Bram Moolenaar2020-12-021-28/+28
* patch 8.2.2081: Vim9: cannot handle a linebreak after "=" in assignmentv8.2.2081Bram Moolenaar2020-12-021-0/+15
* patch 8.2.2072: Vim9: list assign not well testedv8.2.2072Bram Moolenaar2020-11-301-0/+18
* patch 8.2.2071: Vim9: list assign doesn't except empty remainder listv8.2.2071Bram Moolenaar2020-11-301-24/+27
* patch 8.2.2066: Vim9: assignment with += doesn't workv8.2.2066Bram Moolenaar2020-11-281-12/+11
* patch 8.2.2063: Vim9: only one level of indexing supportedv8.2.2063Bram Moolenaar2020-11-281-0/+72
* patch 8.2.2000: Vim9: dict.key assignment not implemented yetv8.2.2000Bram Moolenaar2020-11-161-1/+10
* patch 8.2.1949: Vim9: using extend() on null dict is silently ignoredv8.2.1949Bram Moolenaar2020-11-041-3/+49
* patch 8.2.1864: Vim9: no error for wrong list typev8.2.1864Bram Moolenaar2020-10-191-0/+6
* patch 8.2.1859: Vim9: crash in unpack assignmentv8.2.1859Bram Moolenaar2020-10-171-0/+3
* patch 8.2.1857: Vim9: using job_status() on an unused var gives an errorv8.2.1857Bram Moolenaar2020-10-171-0/+4
* patch 8.2.1853: "to_f" is recognized at "topleft" modifierv8.2.1853Bram Moolenaar2020-10-161-1/+4
* patch 8.2.1839: Vim9: memory leaks reported in assign testv8.2.1839Bram Moolenaar2020-10-121-7/+4
* patch 8.2.1821: Vim9: concatenating to a NULL list doesn't workv8.2.1821Bram Moolenaar2020-10-101-0/+12
* patch 8.2.1795: Vim9: operators && and || have a confusing resultv8.2.1795Bram Moolenaar2020-10-031-5/+5
* patch 8.2.1777: Vim9: some assignment tests in the wrong filev8.2.1777Bram Moolenaar2020-09-301-0/+195