aboutsummaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* fix issue #120.v0.15.21Li Jin2023-01-112-10/+11
|
* Add a range_error catch in main compilation code (#121)Даниил Николаев (NeverMine)2023-01-101-1/+6
|
* prevent using declared global variables as temporary inline variables.Li Jin2022-12-291-2/+15
|
* add metamethods checking.Li Jin2022-12-281-10/+102
|
* remove unused Lua source files.Li Jin2022-12-023-1423/+3
|
* update Lua.Li Jin2022-12-0223-396/+440
|
* add more num lit specs.Li Jin2022-12-022-10/+12
|
* Improve number literal support (#118)Harrison2022-12-022-4/+13
|
* fix optimization case from issue #115.Li Jin2022-11-221-2/+27
|
* fix class syntax ambiguous issue.Li Jin2022-11-212-6/+6
|
* fix table pattern matching. confirm fixing issue #116.Li Jin2022-11-212-30/+41
|
* add -t support for -w option.Li Jin2022-11-171-19/+23
|
* update version.v0.15.14Li Jin2022-11-162-7/+8
|
* fix build. update doc.Li Jin2022-11-167-21/+28
|
* fix issues detected by MSVC.Li Jin2022-11-153-3/+16
|
* adding -w option to Yuescript tool.Li Jin2022-11-1575-4/+9757
|
* fix default value issue when doing metatable destructuring.v0.15.13Li Jin2022-11-111-6/+26
|
* refactor parser to be a little faster.Li Jin2022-11-117-192/+318
|
* fix readme.Li Jin2022-11-091-1/+1
|
* fix typo.Li Jin2022-11-091-1/+1
|
* refactor and update readme and changelog.Li Jin2022-11-092-10/+17
|
* add chain assignment. fix issue #115.Li Jin2022-11-094-5/+50
|
* added indentation error messages.Li Jin2022-11-093-3/+9
|
* fix issue #114.Li Jin2022-11-093-14/+27
|
* fix issue #91. Li Jin2022-11-091-1/+5
|
* start to add error AST reporting.Li Jin2022-11-095-30/+54
|
* fix issue #112 and issue #113.Li Jin2022-11-094-12/+52
|
* fix issue #111.Li Jin2022-10-212-2/+2
|
* move utf8 bom skipping to parser.Li Jin2022-10-183-2/+4
|
* skip utf-8 bom. (#110)zg02022-10-181-0/+1
|
* add compiler option and fix an issue with return statement in loop working ↵v0.15.4Li Jin2022-09-302-18/+29
| | | | with continue.
* updating doc.Li Jin2022-09-301-0/+3
|
* fix issue #81, refactor continue with gotos.Li Jin2022-09-3010-134/+272
|
* fix ending white space parsing.Li Jin2022-09-262-6/+6
|
* reserve comment in AST followed by statement.Li Jin2022-09-265-22/+63
|
* added a missing scope.Li Jin2022-09-081-1/+6
|
* redesigned metatable syntax. add support for destructuring a field with ↵Li Jin2022-09-084-218/+388
| | | | string and expression
* update to Lua 5.4.5.Li Jin2022-08-2616-147/+197
|
* add back missing number syntax.Li Jin2022-08-202-4/+9
|
* fix format.Li Jin2022-08-1913-821/+737
|
* fix a missing argument number check.Li Jin2022-08-161-3/+6
|
* fix not marking variables from `import from` statement to be const issue.v0.14.4Li Jin2022-07-291-2/+5
|
* add missing operator checks for update assignment.Li Jin2022-07-282-10/+9
|
* check Lua target for some special operators.Li Jin2022-07-281-1/+20
|
* fix missing checks and issues related to destrucuring in if branches.Li Jin2022-07-261-86/+114
|
* fix issue #107.Li Jin2022-07-261-0/+2
|
* make destructuring work on function multiple returned values, fix `a, b[] = ↵Li Jin2022-07-262-58/+141
| | | | 1` crashing issue, no longer support implicit declaring variable to be nil.
* cleanup.Li Jin2022-07-251-4/+12
|
* cleanup.Li Jin2022-07-251-3/+3
|
* add option --target=5.1 to generate Lua 5.1 compatible codes. add const ↵Li Jin2022-07-246-99/+256
| | | | destructure. make import item const by default.