@malloydata/malloy 0.0.416 → 0.0.418
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/dist/lang/lib/Malloy/MalloyParser.d.ts +2 -0
- package/dist/lang/lib/Malloy/MalloyParser.js +1156 -1140
- package/dist/lang/malloy-to-ast.d.ts +1 -1
- package/dist/lang/malloy-to-ast.js +5 -1
- package/dist/lang/parse-log.d.ts +1 -0
- package/dist/lang/syntax-errors/malloy-error-strategy.d.ts +6 -2
- package/dist/lang/syntax-errors/malloy-error-strategy.js +36 -4
- package/dist/lang/syntax-errors/token-names.d.ts +3 -1
- package/dist/lang/syntax-errors/token-names.js +23 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +4 -4
|
@@ -2563,6 +2563,8 @@ export declare class FilterString_stubContext extends LiteralContext {
|
|
|
2563
2563
|
}
|
|
2564
2564
|
export declare class ExprNowContext extends LiteralContext {
|
|
2565
2565
|
NOW(): TerminalNode;
|
|
2566
|
+
OPAREN(): TerminalNode | undefined;
|
|
2567
|
+
CPAREN(): TerminalNode | undefined;
|
|
2566
2568
|
constructor(ctx: LiteralContext);
|
|
2567
2569
|
enterRule(listener: MalloyParserListener): void;
|
|
2568
2570
|
exitRule(listener: MalloyParserListener): void;
|