@malloydata/malloy 0.0.78 → 0.0.79-dev230818134709
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/MalloyTagLexer.d.ts +6 -5
- package/dist/lang/lib/Malloy/MalloyTagLexer.js +280 -271
- package/dist/lang/lib/Malloy/MalloyTagParser.d.ts +24 -14
- package/dist/lang/lib/Malloy/MalloyTagParser.js +187 -130
- package/dist/lang/lib/Malloy/MalloyTagVisitor.d.ts +7 -0
- package/dist/tags.js +3 -1
- package/package.json +1 -1
|
@@ -16,11 +16,12 @@ export declare class MalloyTagLexer extends Lexer {
|
|
|
16
16
|
static readonly AR_END = 11;
|
|
17
17
|
static readonly SQ_STRING = 12;
|
|
18
18
|
static readonly DQ_STRING = 13;
|
|
19
|
-
static readonly
|
|
20
|
-
static readonly
|
|
21
|
-
static readonly
|
|
22
|
-
static readonly
|
|
23
|
-
static readonly
|
|
19
|
+
static readonly BQ_STRING = 14;
|
|
20
|
+
static readonly NUMERIC_LITERAL = 15;
|
|
21
|
+
static readonly BARE_STRING = 16;
|
|
22
|
+
static readonly COMMENT = 17;
|
|
23
|
+
static readonly WHITE_SPACE = 18;
|
|
24
|
+
static readonly UNEXPECTED_CHAR = 19;
|
|
24
25
|
static readonly channelNames: string[];
|
|
25
26
|
static readonly modeNames: string[];
|
|
26
27
|
static readonly ruleNames: string[];
|