]> git.kianting.info Git - clo/commitdiff
modify somethinig
authorTan Kian-ting <chenjt30@gmail.com>
Tue, 10 Oct 2023 14:16:13 +0000 (22:16 +0800)
committerTan Kian-ting <chenjt30@gmail.com>
Tue, 10 Oct 2023 14:16:13 +0000 (22:16 +0800)
src/index.js
src/index.ts

index 6b49d56f4b9c14b43a2d4306bf351c41d83b807f..15e18628b9bd679b10e00ed1215069f029b1dfe2 100644 (file)
@@ -100,12 +100,12 @@ import you as john;
 
 臺中市\\\@
 
-政府
-@2+2==4;
+公園
+@1+2==3;
 
 console.log("122");@
 
-人民
+山頂
 `;
 const PROG = p.rule();
 const SEGMENT = p.rule();
@@ -202,6 +202,5 @@ SEGMENT.setPattern(p.alt(p.apply(p.rep_sc(NOT_AT_TEXT), applyText), p.apply(p.se
  * CONTENT : SEGMENT*
  */
 CONTENT.setPattern(p.apply(p.rep(SEGMENT), applyContent));
-console.log(repr(lexer.parse(inputTxt)));
 let tree = p.expectSingleResult(p.expectEOF(PROG.parse(lexer.parse(inputTxt))));
 console.log("RESULT=" + tkTreeToSExp(tree));
index f5f55af9cc5f0fbe26e6b8b9e8a54345f5021767..26a690eb3b71659a119668c7e4c5f202faf04a39 100644 (file)
@@ -88,12 +88,12 @@ import you as john;
 
 臺中市\\\@
 
-政府
-@2+2==4;
+公園
+@1+2==3;
 
 console.log("122");@
 
-人民
+山頂
 `;
 
 
@@ -258,7 +258,6 @@ CONTENT.setPattern(
 );
 
 
-console.log(repr(lexer.parse(inputTxt)));
 let tree = p.expectSingleResult(p.expectEOF(PROG.parse(lexer.parse(inputTxt))));