aboutsummaryrefslogtreecommitdiff
path: root/spec (follow)
Commit message (Collapse)AuthorAgeFilesLines
* fix a missed case for issue #64.v0.8.1Li Jin2021-08-191-0/+7
|
* fix issue #64.Li Jin2021-08-171-0/+29
|
* fix vararg issues. add new spec.Li Jin2021-08-151-0/+56
|
* add spec.Li Jin2021-08-091-3/+3
|
* fix issue #52, add until statement.Li Jin2021-05-131-0/+16
|
* fix spec.Li Jin2021-04-281-2/+2
|
* fix issue #49 and issue #50.Li Jin2021-04-191-0/+18
|
* rename BackcallOperator to PipeOperator.Li Jin2021-04-193-83/+87
|
* fix issue #47.Li Jin2021-04-081-0/+7
|
* fix export assignment statement not working with local statement.Li Jin2021-04-011-0/+7
|
* fix an issue with local statement.Li Jin2021-03-091-0/+4
|
* add new syntax for issue #41. fix a issue for destructure syntax with ↵Li Jin2021-03-082-1/+33
| | | | TableBlock. try fix luarocks installing problem again for issue #42.
* fix issue #41, add square brackets support for metatable syntax. fix using ↵Li Jin2021-03-051-0/+8
| | | | metatable with "with" syntax issue.
* add new metatable syntax for issue #41, fix reusing local variable issue, ↵Li Jin2021-03-031-0/+43
| | | | update built-in Lua.
* add test case.Li Jin2021-03-021-1/+6
|
* simplify and extend import syntax.Li Jin2021-02-222-2/+7
|
* fix issue in destructure syntax.Li Jin2021-02-201-0/+6
|
* fix macro issue.Li Jin2021-02-171-3/+4
|
* stop reusing variables, rename project.Li Jin2021-02-1738-11/+56
|
* adding more test cases.moonplusLi Jin2021-02-152-15/+67
|
* fix some ambiguous syntax.Li Jin2021-02-151-3/+3
|
* fix local statement used with line decorator issue.Li Jin2021-02-101-0/+2
|
* fix issue #38 with a better solution.Li Jin2021-02-103-0/+29
|
* update backcall operator syntax, fix issue #31.Li Jin2021-02-101-3/+25
|
* partially fix another issue from issue #38.Li Jin2021-02-091-0/+16
|
* simplify macro syntax. fix issue #38 again.Li Jin2021-02-085-43/+99
|
* fix #38Li Jin2021-02-061-9/+33
|
* fix issue #36Li Jin2021-01-222-1/+2
|
* fix issue #30Li Jin2020-11-031-0/+16
|
* fix issue #29Li Jin2020-11-031-0/+6
|
* fix.Li Jin2020-10-231-2/+1
|
* make teal-macro look better.Li Jin2020-10-233-13/+6844
|
* extend macro feature to support compiling Moonscript to other Lua dialect ↵Li Jin2020-10-214-10/+92
| | | | | | | | like teal. add examples for how to write MoonPlus codes that compile to teal. fix C++ macro to build without MoonPlus macro feature or built-in Lua. add support for passing arguments from command line to compiler that can be accessed or altered by "require('moonp').options".
* add spec.Li Jin2020-10-151-1/+2
|
* add support to import all macros from a module with symbol '$' in import-as ↵Li Jin2020-10-152-2/+5
| | | | | | statement. fix import macro rename issue.
* change file extension moonp.Li Jin2020-10-0835-11/+13
|
* support inserting common expression item started with * symbol into a table ↵Li Jin2020-09-181-0/+23
| | | | block.
* add test cases.Li Jin2020-09-171-0/+14
|
* make simple table and table block appear in the end of function arguments ↵Li Jin2020-09-172-3/+3
| | | | merged.
* revert binary operator rules, change implicit object start symbol.Li Jin2020-09-112-18/+19
|
* add implicit objects support while writing tables.Li Jin2020-09-111-0/+20
|
* reserve the same Moonscript coma separated expressions behaviors.Li Jin2020-08-202-32/+32
|
* change white space rule in assignment list.Li Jin2020-08-071-0/+9
|
* fix a case multiline binary operator expression conflicts with new statement ↵Li Jin2020-08-061-0/+23
| | | | started with an unary expression.
* remove support for escape new line symbol, binary operator expressions can ↵Li Jin2020-08-062-23/+26
| | | | now be written multiline without escape new line symbol.
* fix case for extending class without name.Li Jin2020-08-051-0/+3
|
* fix issue for using return statement with export.Li Jin2020-07-181-0/+31
|
* fix compile error for "t = { [ [[abc]] ] : 42 }", make "t = {[[abc]]:42}" ↵Li Jin2020-07-062-0/+4
| | | | valid codes.
* fix issue when declaring multiple variables with attribute.Li Jin2020-06-301-2/+5
|
* add support for local variable declared with attribute 'close' and 'const' ↵Li Jin2020-06-223-7/+95
| | | | for Lua 5.4.