diff options
author | Li Jin <dragon-fly@qq.com> | 2022-07-07 16:37:04 +0800 |
---|---|---|
committer | Li Jin <dragon-fly@qq.com> | 2022-07-07 16:37:04 +0800 |
commit | 1a7c8e3c38fcf0af94ca799a3cd9fa7c4ef1bf08 (patch) | |
tree | 63b81a52a5b1cc8ba979a17c33cce28a3e0ab1fa /spec | |
parent | 1eb9ed57de854aa996614b7016bac04a68105389 (diff) | |
download | yuescript-1a7c8e3c38fcf0af94ca799a3cd9fa7c4ef1bf08.tar.gz yuescript-1a7c8e3c38fcf0af94ca799a3cd9fa7c4ef1bf08.tar.bz2 yuescript-1a7c8e3c38fcf0af94ca799a3cd9fa7c4ef1bf08.zip |
cleanup.
Diffstat (limited to 'spec')
-rw-r--r-- | spec/inputs/macro-export.yue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/inputs/macro-export.yue b/spec/inputs/macro-export.yue index 46cc608..adc71da 100644 --- a/spec/inputs/macro-export.yue +++ b/spec/inputs/macro-export.yue | |||
@@ -42,9 +42,9 @@ do | |||
42 | local _src_, _dst_ | 42 | local _src_, _dst_ |
43 | with _dst_ = #{dst} | 43 | with _dst_ = #{dst} |
44 | with _src_ = #{src} | 44 | with _src_ = #{src} |
45 | #{table.concat (for field in *{...} | 45 | #{table.concat for field in *{...} do " |
46 | " _dst_.#{field} = _src_.#{field}"), "\n"} | 46 | _dst_.#{field} = _src_.#{field} |
47 | " | 47 | "}" |
48 | 48 | ||
49 | $ -> | 49 | $ -> |
50 | global debugMode = true | 50 | global debugMode = true |