summaryrefslogtreecommitdiffstats
path: root/src/vim9.h
AgeCommit message (Collapse)Author
2020-04-05patch 8.2.0512: Vim9: no optional arguments in func typev8.2.0512Bram Moolenaar
Problem: Vim9: no optional arguments in func type. Solution: Check for question mark after type. Find function reference without function().
2020-03-31patch 8.2.0488: Vim9: compiling can break when using a lambda inside :defv8.2.0488Bram Moolenaar
Problem: Vim9: Compiling can break when using a lambda inside :def. Solution: Do not keep a pointer to the dfunc_T for longer time.
2020-03-31patch 8.2.0487: Vim9: compiling not sufficiently testedv8.2.0487Bram Moolenaar
Problem: Vim9: compiling not sufficiently tested. Solution: Add more tests. Fix bug with PCALL.
2020-03-20patch 8.2.0419: various memory leaks in Vim9 script codev8.2.0419Bram Moolenaar
Problem: Various memory leaks in Vim9 script code. Solution: Fix the leaks. (Ozaki Kiichi, closes #5814)
2020-03-04patch 8.2.0355: Vim9: str_val is confusing, it's a numberv8.2.0355Bram Moolenaar
Problem: Vim9: str_val is confusing, it's a number Solution: Rename to stnr_val.
2020-03-01patch 8.2.0340: Vim9: function and partial types not testedv8.2.0340Bram Moolenaar
Problem: Vim9: function and partial types not tested. Solution: Support more for partial, add tests.
2020-02-29patch 8.2.0336: Vim9: insufficient test coverage for compilingv8.2.0336Bram Moolenaar
Problem: Vim9: insufficient test coverage for compiling. Solution: Add more tests.
2020-02-26patch 8.2.0321: Vim9: ":execute" does not work yetv8.2.0321Bram Moolenaar
Problem: Vim9: ":execute" does not work yet. Solution: Add ISN_EXECUTE. (closes #5699) Also make :echo work with more than one argument.
2020-02-06patch 8.2.0225: compiling lambda not tested yetv8.2.0225Bram Moolenaar
Problem: compiling lambda not tested yet. Solution: Add test for lambda and funcref. Drop unused instruction arg.
2020-02-02patch 8.2.0200: Vim9 script commands not sufficiently testedv8.2.0200Bram Moolenaar
Problem: Vim9 script commands not sufficiently tested. Solution: Add more tests. Fix storing global variable. Make script variables work.
2020-01-26patch 8.2.0149: maintaining a Vim9 branch separately is more workv8.2.0149Bram Moolenaar
Problem: Maintaining a Vim9 branch separately is more work. Solution: Merge the Vim9 script changes.