diff options
author | Li Jin <dragon-fly@qq.com> | 2020-07-17 16:22:11 +0800 |
---|---|---|
committer | Li Jin <dragon-fly@qq.com> | 2020-07-17 16:22:11 +0800 |
commit | 8ab0038c09a79fa8401bb10b7a31d03ef5380417 (patch) | |
tree | e6f61f25d9e5aae95a05d974938fa7a5fbfd998e /CHANGELOG.md | |
parent | 7e057d0dd7048d1aa8fbcadb9998902462a384d6 (diff) | |
download | yuescript-8ab0038c09a79fa8401bb10b7a31d03ef5380417.tar.gz yuescript-8ab0038c09a79fa8401bb10b7a31d03ef5380417.tar.bz2 yuescript-8ab0038c09a79fa8401bb10b7a31d03ef5380417.zip |
fixed a missed case for multiline string as table key. reporting use of global variable 'tostring' .
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 3fe390d..0154124 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md | |||
@@ -4,7 +4,11 @@ The implementation for original Moonscript language 0.5.0 can be found in the `0 | |||
4 | 4 | ||
5 | 5 | ||
6 | 6 | ||
7 | ## v0.4.1 | 7 | ## v0.4.4 |
8 | |||
9 | ### Fixed Issues | ||
10 | |||
11 | * Fix issues when declaring table key with Lua multiline string and indexing expressions with Lua multiline string. | ||
8 | 12 | ||
9 | ### Added Features | 13 | ### Added Features |
10 | 14 | ||
@@ -39,9 +43,7 @@ The implementation for original Moonscript language 0.5.0 can be found in the `0 | |||
39 | ### Fixed Issues | 43 | ### Fixed Issues |
40 | 44 | ||
41 | * Fix issues of unary and binary operator "~". | 45 | * Fix issues of unary and binary operator "~". |
42 | |||
43 | * Fix Moonscript issue 416: ambiguous Lua output in some cases. | 46 | * Fix Moonscript issue 416: ambiguous Lua output in some cases. |
44 | |||
45 | * Fix errors when explicitly declaring global or local variable initialized with table block. | 47 | * Fix errors when explicitly declaring global or local variable initialized with table block. |
46 | * Fix macro type mismatch issue. | 48 | * Fix macro type mismatch issue. |
47 | * Fix line break issue in macro, disable macro declaration outside the root scope. | 49 | * Fix line break issue in macro, disable macro declaration outside the root scope. |
@@ -52,10 +54,8 @@ The implementation for original Moonscript language 0.5.0 can be found in the `0 | |||
52 | 54 | ||
53 | ### Added Features | 55 | ### Added Features |
54 | 56 | ||
55 | * Change operator precedence to 1 ^ 2 unary operators (not, #, -, ~) 3 |> 4 *, /, //, %, ... | 57 | * Change operator precedence to (1) ^ (2) unary operators (not, #, -, ~) (3) |> (4) *, /, //, %, ... |
56 | |||
57 | * Make back call operator use highest priority for operator precedence. | 58 | * Make back call operator use highest priority for operator precedence. |
58 | |||
59 | * Add existential operator support for `with` statement. | 59 | * Add existential operator support for `with` statement. |
60 | * Add repeat until statement support. | 60 | * Add repeat until statement support. |
61 | * Allow implicitly returning block macro. | 61 | * Allow implicitly returning block macro. |