@malloydata/malloy 0.0.43-dev230622192152 → 0.0.43
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/dialect/dialect.d.ts +1 -0
- package/dist/dialect/duckdb/duckdb.d.ts +1 -0
- package/dist/dialect/duckdb/duckdb.js +5 -2
- package/dist/dialect/postgres/postgres.d.ts +1 -0
- package/dist/dialect/postgres/postgres.js +8 -2
- package/dist/dialect/standardsql/standardsql.d.ts +1 -0
- package/dist/dialect/standardsql/standardsql.js +1 -0
- package/dist/lang/lib/Malloy/MalloyLexer.d.ts +44 -43
- package/dist/lang/lib/Malloy/MalloyLexer.js +958 -953
- package/dist/lang/lib/Malloy/MalloyParser.d.ts +58 -56
- package/dist/lang/lib/Malloy/MalloyParser.js +644 -625
- package/dist/lang/lib/Malloy/MalloyParserListener.d.ts +13 -13
- package/dist/lang/lib/Malloy/MalloyParserVisitor.d.ts +8 -8
- package/package.json +1 -1
|
@@ -109,49 +109,50 @@ export declare class MalloyParser extends Parser {
|
|
|
109
109
|
static readonly OCURLY = 98;
|
|
110
110
|
static readonly CCURLY = 99;
|
|
111
111
|
static readonly DOUBLECOLON = 100;
|
|
112
|
-
static readonly
|
|
113
|
-
static readonly
|
|
114
|
-
static readonly
|
|
115
|
-
static readonly
|
|
116
|
-
static readonly
|
|
117
|
-
static readonly
|
|
118
|
-
static readonly
|
|
119
|
-
static readonly
|
|
120
|
-
static readonly
|
|
121
|
-
static readonly
|
|
122
|
-
static readonly
|
|
123
|
-
static readonly
|
|
124
|
-
static readonly
|
|
125
|
-
static readonly
|
|
126
|
-
static readonly
|
|
127
|
-
static readonly
|
|
128
|
-
static readonly
|
|
129
|
-
static readonly
|
|
130
|
-
static readonly
|
|
131
|
-
static readonly
|
|
132
|
-
static readonly
|
|
133
|
-
static readonly
|
|
134
|
-
static readonly
|
|
135
|
-
static readonly
|
|
136
|
-
static readonly
|
|
137
|
-
static readonly
|
|
138
|
-
static readonly
|
|
139
|
-
static readonly
|
|
140
|
-
static readonly
|
|
141
|
-
static readonly
|
|
142
|
-
static readonly
|
|
143
|
-
static readonly
|
|
144
|
-
static readonly
|
|
145
|
-
static readonly
|
|
146
|
-
static readonly
|
|
147
|
-
static readonly
|
|
148
|
-
static readonly
|
|
149
|
-
static readonly
|
|
150
|
-
static readonly
|
|
151
|
-
static readonly
|
|
152
|
-
static readonly
|
|
153
|
-
static readonly
|
|
154
|
-
static readonly
|
|
112
|
+
static readonly TRIPLECOLON = 101;
|
|
113
|
+
static readonly EXCLAM = 102;
|
|
114
|
+
static readonly COLON = 103;
|
|
115
|
+
static readonly COMMA = 104;
|
|
116
|
+
static readonly DOT = 105;
|
|
117
|
+
static readonly LT = 106;
|
|
118
|
+
static readonly GT = 107;
|
|
119
|
+
static readonly EQ = 108;
|
|
120
|
+
static readonly NE = 109;
|
|
121
|
+
static readonly LTE = 110;
|
|
122
|
+
static readonly GTE = 111;
|
|
123
|
+
static readonly PLUS = 112;
|
|
124
|
+
static readonly MINUS = 113;
|
|
125
|
+
static readonly STAR = 114;
|
|
126
|
+
static readonly STARSTAR = 115;
|
|
127
|
+
static readonly SLASH = 116;
|
|
128
|
+
static readonly BAR = 117;
|
|
129
|
+
static readonly SEMI = 118;
|
|
130
|
+
static readonly NOT_MATCH = 119;
|
|
131
|
+
static readonly MATCH = 120;
|
|
132
|
+
static readonly PERCENT = 121;
|
|
133
|
+
static readonly DOUBLE_QMARK = 122;
|
|
134
|
+
static readonly QMARK = 123;
|
|
135
|
+
static readonly LITERAL_TIMESTAMP = 124;
|
|
136
|
+
static readonly LITERAL_HOUR = 125;
|
|
137
|
+
static readonly LITERAL_DAY = 126;
|
|
138
|
+
static readonly LITERAL_QUARTER = 127;
|
|
139
|
+
static readonly LITERAL_MONTH = 128;
|
|
140
|
+
static readonly LITERAL_WEEK = 129;
|
|
141
|
+
static readonly LITERAL_YEAR = 130;
|
|
142
|
+
static readonly IDENTIFIER = 131;
|
|
143
|
+
static readonly PERCENT_LITERAL = 132;
|
|
144
|
+
static readonly INTEGER_LITERAL = 133;
|
|
145
|
+
static readonly NUMERIC_LITERAL = 134;
|
|
146
|
+
static readonly OBJECT_NAME_LITERAL = 135;
|
|
147
|
+
static readonly BLOCK_COMMENT = 136;
|
|
148
|
+
static readonly COMMENT_TO_EOL = 137;
|
|
149
|
+
static readonly WHITE_SPACE = 138;
|
|
150
|
+
static readonly SQL_BEGIN = 139;
|
|
151
|
+
static readonly CLOSE_CODE = 140;
|
|
152
|
+
static readonly UNWATED_CHARS_TRAILING_NUMBERS = 141;
|
|
153
|
+
static readonly UNEXPECTED_CHAR = 142;
|
|
154
|
+
static readonly OPEN_CODE = 143;
|
|
155
|
+
static readonly SQL_END = 144;
|
|
155
156
|
static readonly RULE_malloyDocument = 0;
|
|
156
157
|
static readonly RULE_malloyStatement = 1;
|
|
157
158
|
static readonly RULE_defineSourceStatement = 2;
|
|
@@ -1639,9 +1640,22 @@ export declare class ExprTimeTruncContext extends FieldExprContext {
|
|
|
1639
1640
|
exitRule(listener: MalloyParserListener): void;
|
|
1640
1641
|
accept<Result>(visitor: MalloyParserVisitor<Result>): Result;
|
|
1641
1642
|
}
|
|
1643
|
+
export declare class ExprCastContext extends FieldExprContext {
|
|
1644
|
+
fieldExpr(): FieldExprContext;
|
|
1645
|
+
DOUBLECOLON(): TerminalNode | undefined;
|
|
1646
|
+
malloyType(): MalloyTypeContext;
|
|
1647
|
+
CAST(): TerminalNode | undefined;
|
|
1648
|
+
OPAREN(): TerminalNode | undefined;
|
|
1649
|
+
AS(): TerminalNode | undefined;
|
|
1650
|
+
CPAREN(): TerminalNode | undefined;
|
|
1651
|
+
constructor(ctx: FieldExprContext);
|
|
1652
|
+
enterRule(listener: MalloyParserListener): void;
|
|
1653
|
+
exitRule(listener: MalloyParserListener): void;
|
|
1654
|
+
accept<Result>(visitor: MalloyParserVisitor<Result>): Result;
|
|
1655
|
+
}
|
|
1642
1656
|
export declare class ExprSafeCastContext extends FieldExprContext {
|
|
1643
1657
|
fieldExpr(): FieldExprContext;
|
|
1644
|
-
|
|
1658
|
+
TRIPLECOLON(): TerminalNode;
|
|
1645
1659
|
malloyType(): MalloyTypeContext;
|
|
1646
1660
|
constructor(ctx: FieldExprContext);
|
|
1647
1661
|
enterRule(listener: MalloyParserListener): void;
|
|
@@ -1769,18 +1783,6 @@ export declare class ExprCoalesceContext extends FieldExprContext {
|
|
|
1769
1783
|
exitRule(listener: MalloyParserListener): void;
|
|
1770
1784
|
accept<Result>(visitor: MalloyParserVisitor<Result>): Result;
|
|
1771
1785
|
}
|
|
1772
|
-
export declare class ExprCastContext extends FieldExprContext {
|
|
1773
|
-
CAST(): TerminalNode;
|
|
1774
|
-
OPAREN(): TerminalNode;
|
|
1775
|
-
fieldExpr(): FieldExprContext;
|
|
1776
|
-
AS(): TerminalNode;
|
|
1777
|
-
malloyType(): MalloyTypeContext;
|
|
1778
|
-
CPAREN(): TerminalNode;
|
|
1779
|
-
constructor(ctx: FieldExprContext);
|
|
1780
|
-
enterRule(listener: MalloyParserListener): void;
|
|
1781
|
-
exitRule(listener: MalloyParserListener): void;
|
|
1782
|
-
accept<Result>(visitor: MalloyParserVisitor<Result>): Result;
|
|
1783
|
-
}
|
|
1784
1786
|
export declare class ExprCountDisinctContext extends FieldExprContext {
|
|
1785
1787
|
COUNT(): TerminalNode;
|
|
1786
1788
|
OPAREN(): TerminalNode;
|