@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.
@@ -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 EXCLAM = 101;
113
- static readonly COLON = 102;
114
- static readonly COMMA = 103;
115
- static readonly DOT = 104;
116
- static readonly LT = 105;
117
- static readonly GT = 106;
118
- static readonly EQ = 107;
119
- static readonly NE = 108;
120
- static readonly LTE = 109;
121
- static readonly GTE = 110;
122
- static readonly PLUS = 111;
123
- static readonly MINUS = 112;
124
- static readonly STAR = 113;
125
- static readonly STARSTAR = 114;
126
- static readonly SLASH = 115;
127
- static readonly BAR = 116;
128
- static readonly SEMI = 117;
129
- static readonly NOT_MATCH = 118;
130
- static readonly MATCH = 119;
131
- static readonly PERCENT = 120;
132
- static readonly DOUBLE_QMARK = 121;
133
- static readonly QMARK = 122;
134
- static readonly LITERAL_TIMESTAMP = 123;
135
- static readonly LITERAL_HOUR = 124;
136
- static readonly LITERAL_DAY = 125;
137
- static readonly LITERAL_QUARTER = 126;
138
- static readonly LITERAL_MONTH = 127;
139
- static readonly LITERAL_WEEK = 128;
140
- static readonly LITERAL_YEAR = 129;
141
- static readonly IDENTIFIER = 130;
142
- static readonly PERCENT_LITERAL = 131;
143
- static readonly INTEGER_LITERAL = 132;
144
- static readonly NUMERIC_LITERAL = 133;
145
- static readonly OBJECT_NAME_LITERAL = 134;
146
- static readonly BLOCK_COMMENT = 135;
147
- static readonly COMMENT_TO_EOL = 136;
148
- static readonly WHITE_SPACE = 137;
149
- static readonly SQL_BEGIN = 138;
150
- static readonly CLOSE_CODE = 139;
151
- static readonly UNWATED_CHARS_TRAILING_NUMBERS = 140;
152
- static readonly UNEXPECTED_CHAR = 141;
153
- static readonly OPEN_CODE = 142;
154
- static readonly SQL_END = 143;
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
- DOUBLECOLON(): TerminalNode;
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;