]> git.kianting.info Git - clo/commitdiff
fix lacking semicolon; for import
authorTan Kian-ting <chenjt30@gmail.com>
Wed, 11 Oct 2023 16:41:36 +0000 (00:41 +0800)
committerTan Kian-ting <chenjt30@gmail.com>
Wed, 11 Oct 2023 16:41:36 +0000 (00:41 +0800)
a.clo
a.js
src/parser.ts

diff --git a/a.clo b/a.clo
index f98a5c38e98b5a5b1b26119777f771bcac577e8d..ac2b033169608f574c9f968847a214318006518d 100644 (file)
--- a/a.clo
+++ b/a.clo
@@ -1,6 +1,6 @@
 /* ba choir 
 ipsum lorem*/
-
+import * as dublin from 'dublin'; 
 ---
 我是一隻古怪的虎斑貓。擅長喵喵叫。
 the quick brown fox jumps over the lazy dog.
diff --git a/a.js b/a.js
index 317dd04b32c913c808c125c2ef81399cb663045d..f10ef7541f9c4cf1c6fdaa9b7008c167747875e1 100644 (file)
--- a/a.js
+++ b/a.js
@@ -6,8 +6,8 @@ import * as clo from "clo";
 cl = clo.initClo();
 /* CLO:  end of head*/
 /* ba choir 
-ipsum lorem*/
-
+ipsum lorem*/;
+import * as dublin from 'dublin'; 
 
 /* CLO:  beginning of middle part*/
 cl.mainText = /* CLO: end of middle part*/
index 269b698343ee2a3b4c7b65c25313a7b3db45064c..5521491c4b5dfc8991f2f40060a540d21802af2a 100644 (file)
@@ -273,7 +273,7 @@ export function treeToJS(tree : tkTree): string{
             let importsText = imports.map(
                 (x)=>{
                     if (Array.isArray(x)){
-                        return x.join('');
+                        return x.join('') + ';';
                     }
                     else{
                         return x;