diff options
author | Li Jin <dragon-fly@qq.com> | 2022-07-24 22:13:08 +0800 |
---|---|---|
committer | Li Jin <dragon-fly@qq.com> | 2022-07-24 22:13:08 +0800 |
commit | 303834e1b1e6cd9cae64b66c2ae44dcd7185238f (patch) | |
tree | 519f6a1debcc5791d35e06dc5cbb1ce22f9cfd31 /spec/inputs/import.yue | |
parent | eb367126bf3a4f5b0e51ccef93b7c7136bea170e (diff) | |
download | yuescript-303834e1b1e6cd9cae64b66c2ae44dcd7185238f.tar.gz yuescript-303834e1b1e6cd9cae64b66c2ae44dcd7185238f.tar.bz2 yuescript-303834e1b1e6cd9cae64b66c2ae44dcd7185238f.zip |
add option --target=5.1 to generate Lua 5.1 compatible codes. add const destructure. make import item const by default.
Diffstat (limited to 'spec/inputs/import.yue')
-rw-r--r-- | spec/inputs/import.yue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/inputs/import.yue b/spec/inputs/import.yue index 8e82a01..e206d04 100644 --- a/spec/inputs/import.yue +++ b/spec/inputs/import.yue | |||
@@ -70,7 +70,7 @@ do | |||
70 | 70 | ||
71 | do | 71 | do |
72 | import "m" as {a#: b} | 72 | import "m" as {a#: b} |
73 | import "m" as {e: f, a#: b} | 73 | import "m" as {e: f, a#: c} |
74 | import "m" as {c: d} | 74 | import "m" as {c: d} |
75 | import "m" as {g, {h#: i}} | 75 | import "m" as {g, {h#: i}} |
76 | 76 | ||