aboutsummaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* add -g option for yue cmd tool.Li Jin2022-07-223-2/+27
|
* fix else clause issue in switch statement with table matching.Li Jin2022-07-141-4/+8
|
* fix a case when doing optional destructuring for metatable.Li Jin2022-07-141-2/+2
|
* fix table matching issue and update doc.Li Jin2022-07-141-25/+47
|
* auto add search path for cmd tools.Li Jin2022-07-134-19/+39
|
* report syntax error when mix destructures and other expressions in switch ↵Li Jin2022-07-132-2/+2
| | | | when branches.
* fix build.Li Jin2022-07-121-3/+3
|
* add table pattern matching syntax and fix issue #93, remove a confusing ↵Li Jin2022-07-124-260/+374
| | | | default value syntax for destructuring.
* disable exporting macro from a normal module.Li Jin2022-07-054-9/+62
|
* remove some invalid codes.Li Jin2022-06-121-7/+0
|
* fix issue #105.Li Jin2022-06-124-19/+47
|
* fix issue #104.Li Jin2022-06-032-6/+6
|
* remove codes disabling attribute function with Lua 5.1.Li Jin2022-05-251-15/+1
|
* mark variables with both attributes "const" and "close" to be constant in ↵Li Jin2022-05-241-10/+4
| | | | compiler.
* fixing #102 by adding extra condition assignment while continue skip the loop.Li Jin2022-05-161-14/+27
|
* fix issue #101 by supporting metamethod syntax in class block.Li Jin2022-05-162-2/+26
|
* fix issue #97 by line decorator.Li Jin2022-05-161-2/+62
|
* fix issue #102. fix `continue` statement locating issue.Li Jin2022-05-161-6/+78
|
* fix issue #100.Li Jin2022-05-151-2/+6
|
* add update syntax support for //. fix issue #96.Li Jin2022-05-132-1/+2
|
* add to_ast function.Li Jin2022-05-064-138/+224
|
* prevent text mode macro from inserting line numbers in generated codes.Li Jin2022-04-291-9/+12
|
* add spread syntax support for table block. fix a gcc compiler issue. update doc.Li Jin2022-04-254-140/+227
|
* add support for the Fill Operator. fix issue #39.Li Jin2022-04-241-158/+168
|
* fix spreading syntax behavior.Li Jin2022-04-241-12/+33
|
* adding table spreading syntax.Li Jin2022-04-224-15/+209
|
* add placeholder support for list destructuring. fix part of issue #93.Li Jin2022-04-201-1/+2
|
* change the behavior dealing with class and common table when doing mixin.Li Jin2022-04-071-4/+7
|
* fix class initializing procedure again.v0.10.10Li Jin2022-04-071-11/+10
|
* fix class initializing procedure.Li Jin2022-04-072-12/+12
|