@quenk/wml 2.11.4 → 2.12.0
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/lib/cli.js +24 -29
- package/lib/cli.js.map +1 -1
- package/lib/cli.ts +20 -13
- package/lib/compile/codegen.d.ts +1 -9
- package/lib/compile/codegen.js +547 -646
- package/lib/compile/codegen.js.map +1 -1
- package/lib/compile/codegen.ts +26 -22
- package/lib/compile/index.js +6 -11
- package/lib/compile/index.js.map +1 -1
- package/lib/compile/transform.js +14 -23
- package/lib/compile/transform.js.map +1 -1
- package/lib/dom.js +118 -167
- package/lib/dom.js.map +1 -1
- package/lib/index.js +7 -10
- package/lib/index.js.map +1 -1
- package/lib/main.js +31 -56
- package/lib/main.js.map +1 -1
- package/lib/parse/ast.d.ts +3 -3
- package/lib/parse/ast.js +166 -220
- package/lib/parse/ast.js.map +1 -1
- package/lib/parse/ast.ts +2 -2
- package/lib/parse/generated.js +1649 -1685
- package/lib/parse/index.js +7 -10
- package/lib/parse/index.js.map +1 -1
- package/lib/parse/test.js +277 -54
- package/lib/parse/test.js.map +1 -1
- package/lib/parse/test.ts +10 -1
- package/lib/parse/wml.y +30 -39
- package/lib/tsconfig.json +1 -1
- package/package.json +1 -2
package/lib/parse/ast.d.ts
CHANGED
|
@@ -392,10 +392,10 @@ export declare class CallExpression {
|
|
|
392
392
|
* MemberExpression
|
|
393
393
|
*/
|
|
394
394
|
export declare class MemberExpression {
|
|
395
|
-
|
|
396
|
-
|
|
395
|
+
head: Expression;
|
|
396
|
+
tail: UnqualifiedIdentifier | UnqualifiedConstructor | StringLiteral;
|
|
397
397
|
location: Location;
|
|
398
|
-
constructor(
|
|
398
|
+
constructor(head: Expression, tail: UnqualifiedIdentifier | UnqualifiedConstructor | StringLiteral, location: Location);
|
|
399
399
|
}
|
|
400
400
|
export declare class ReadExpression {
|
|
401
401
|
target: Expression;
|