@weborigami/language 0.5.0 → 0.5.2-test.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +4 -4
- package/src/compiler/origami.pegjs +1 -1
- package/src/compiler/parse.js +1040 -903
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@weborigami/language",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2-test.1",
|
|
4
4
|
"description": "Web Origami expression language compiler and runtime",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./main.js",
|
|
7
7
|
"types": "./index.ts",
|
|
8
8
|
"devDependencies": {
|
|
9
9
|
"@types/node": "24.3.0",
|
|
10
|
-
"peggy": "
|
|
10
|
+
"peggy": "5.0.6",
|
|
11
11
|
"typescript": "5.9.2"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@weborigami/async-tree": "0.5.
|
|
15
|
-
"@weborigami/types": "0.5.
|
|
14
|
+
"@weborigami/async-tree": "0.5.2-test.1",
|
|
15
|
+
"@weborigami/types": "0.5.2-test.1",
|
|
16
16
|
"watcher": "2.3.1",
|
|
17
17
|
"yaml": "2.8.1"
|
|
18
18
|
},
|
|
@@ -809,7 +809,7 @@ templateDocument "template document"
|
|
|
809
809
|
// A backtick-quoted template literal
|
|
810
810
|
templateLiteral "template literal"
|
|
811
811
|
= "`" head:templateLiteralText tail:(templateSubstitution templateLiteralText)* expectBacktick {
|
|
812
|
-
return makeTemplate(ops.
|
|
812
|
+
return makeTemplate(ops.templateText, head, tail, location());
|
|
813
813
|
}
|
|
814
814
|
|
|
815
815
|
templateLiteralChar
|