diff options
author | Li Jin <dragon-fly@qq.com> | 2020-02-20 14:43:34 +0800 |
---|---|---|
committer | Li Jin <dragon-fly@qq.com> | 2020-02-20 14:43:34 +0800 |
commit | a4bbfc61a8973ad029bd7d7908bf2c24398c0715 (patch) | |
tree | b6100b8e2ac1d4f13bc2557f90c67d4cbd6061b4 /src/MoonP/moon_compiler.cpp | |
parent | 3a084cfad7aa8da8d2c4b7849347b0832ef8e87e (diff) | |
download | yuescript-a4bbfc61a8973ad029bd7d7908bf2c24398c0715.tar.gz yuescript-a4bbfc61a8973ad029bd7d7908bf2c24398c0715.tar.bz2 yuescript-a4bbfc61a8973ad029bd7d7908bf2c24398c0715.zip |
allow value lists in for statement and in local statement to be multiline got Moonscript issue 390 fixed.
Diffstat (limited to 'src/MoonP/moon_compiler.cpp')
-rw-r--r-- | src/MoonP/moon_compiler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/MoonP/moon_compiler.cpp b/src/MoonP/moon_compiler.cpp index 4596542..e6d010c 100644 --- a/src/MoonP/moon_compiler.cpp +++ b/src/MoonP/moon_compiler.cpp | |||
@@ -32,7 +32,7 @@ inline std::string s(std::string_view sv) { | |||
32 | } | 32 | } |
33 | 33 | ||
34 | const char* moonScriptVersion() { | 34 | const char* moonScriptVersion() { |
35 | return "0.5.0-r0.1.2"; | 35 | return "0.5.0-r0.1.3"; |
36 | } | 36 | } |
37 | 37 | ||
38 | class MoonCompiler { | 38 | class MoonCompiler { |