aboutsummaryrefslogtreecommitdiff
path: root/src/MoonP (follow)
Commit message (Collapse)AuthorAgeFilesLines
* make simple table and table block appear in the end of function arguments ↵Li Jin2020-09-171-1/+32
| | | | merged.
* revert binary operator rules, change implicit object start symbol.Li Jin2020-09-111-2/+2
|
* add implicit objects support while writing tables.Li Jin2020-09-114-6/+20
|
* reserve the same Moonscript coma separated expressions behaviors.Li Jin2020-08-203-11/+13
|
* change white space rule in assignment list.Li Jin2020-08-072-2/+2
|
* fix a case multiline binary operator expression conflicts with new statement ↵Li Jin2020-08-062-4/+4
| | | | started with an unary expression.
* remove support for escape new line symbol, binary operator expressions can ↵Li Jin2020-08-063-8/+6
| | | | now be written multiline without escape new line symbol.
* clean up.Li Jin2020-08-061-4/+5
|
* fix case for extending class without name.Li Jin2020-08-051-2/+2
|
* fix issue for using return statement with export.Li Jin2020-07-181-1/+29
|
* fixed a missed case for multiline string as table key. reporting use of ↵Li Jin2020-07-171-4/+13
| | | | global variable 'tostring' .
* fix compile error for "t = { [ [[abc]] ] : 42 }", make "t = {[[abc]]:42}" ↵Li Jin2020-07-063-5/+11
| | | | 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-225-6/+80
| | | | for Lua 5.4.
* change operator precedence to [1].^ [2].unary operators (not, #, -, ~) ↵Li Jin2020-05-294-267/+280
| | | | | | | [3].|> [4].*, /, //, %, ... fix destructure with one table variable to operator-value expression. fix simple chain value with Lua keyword colon chain item.
* make back call operator use highest priority for operator precedence.Li Jin2020-05-261-62/+107
|
* fix issue of unary and binary operator "~".Li Jin2020-05-143-6/+8
|
* fix Moonscript issue 416: ambiguous Lua output in some cases.Li Jin2020-05-024-7/+44
|
* add existential op support for with statement, add repeat until statement.Li Jin2020-04-264-10/+39
|
* fix errors when explicitly declaring global or local variable initialized ↵Li Jin2020-04-243-7/+18
| | | | with table block.
* allow implicit return block macro, fix compiled Lua codes searching issue.Li Jin2020-04-215-17/+32
|
* add useSpaceOverTab option for compiler, add variadic arguments declaration ↵Li Jin2020-03-303-17/+43
| | | | check, fix assignment with backcall expr not well handled issue.
* fix an existential op issue and add case.Li Jin2020-03-281-4/+4
|
* fix issue #9.Li Jin2020-03-271-0/+1
|
* fix moonp repl issue.Li Jin2020-03-272-5/+5
|
* remove else branch support for appendix syntax.Li Jin2020-03-264-25/+12
|
* add REPL support for moonp.Li Jin2020-03-261-1/+1
|
* add goto statement support.Li Jin2020-03-244-12/+53
|
* add support for macro system expanding to Lua codes directly.Li Jin2020-03-233-41/+67
|
* clean up.Li Jin2020-03-212-74/+29
|
* fix line break issue in macro, disable macro declaration outside root scope.Li Jin2020-03-121-5/+9
|
* fix macro type mismatch issue.Li Jin2020-03-121-7/+23
|
* fix commit messed with gitignore.Li Jin2020-03-113-0/+927
|
* add macro functions.Li Jin2020-03-115-87/+723
|
* move functions of old export statement to global statement, make export ↵Li Jin2020-03-054-74/+237
| | | | statement work with Lua module system.
* add fat arrow support for backcall statement.Li Jin2020-02-264-4/+12
|
* add placeholder support for backcall statement.Li Jin2020-02-231-4/+26
|
* change some interfaces.Li Jin2020-02-224-12/+29
|
* fix comments issue.Li Jin2020-02-201-4/+4
|
* allow value lists in for statement and in local statement to be multiline ↵Li Jin2020-02-202-6/+6
| | | | got Moonscript issue 390 fixed.
* allow value list in assignment to be multiline fixing Moonscript issue 390.Li Jin2020-02-201-1/+1
|
* did some clean up.Li Jin2020-02-183-23/+22
|
* remove the extra type id system.Li Jin2020-02-186-66/+80
|
* change method to generate unique type id.Li Jin2020-02-172-23/+18
|
* refactor some codes to be safer.Li Jin2020-02-173-320/+326
|
* force forward declaration of variable for assigning local function.Li Jin2020-02-151-37/+13
|
* add placeholder support for backcall operator.Li Jin2020-02-142-3/+31
|
* releasing moonplus as a lib.Li Jin2020-02-071-14/+19
|
* fix some cases when using backcall with assignment.Li Jin2020-02-032-144/+117
|
* enable explist to be multi-line without backslash. confirmed there is no ↵Li Jin2020-02-032-6/+4
| | | | similar issue like Moonscript issue 202 or issue 391.