@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.
@@ -20,20 +20,22 @@ export declare class MalloyTagParser extends Parser {
20
20
  static readonly AR_END = 11;
21
21
  static readonly SQ_STRING = 12;
22
22
  static readonly DQ_STRING = 13;
23
- static readonly NUMERIC_LITERAL = 14;
24
- static readonly BARE_STRING = 15;
25
- static readonly COMMENT = 16;
26
- static readonly WHITE_SPACE = 17;
27
- static readonly UNEXPECTED_CHAR = 18;
23
+ static readonly BQ_STRING = 14;
24
+ static readonly NUMERIC_LITERAL = 15;
25
+ static readonly BARE_STRING = 16;
26
+ static readonly COMMENT = 17;
27
+ static readonly WHITE_SPACE = 18;
28
+ static readonly UNEXPECTED_CHAR = 19;
28
29
  static readonly RULE_tagLine = 0;
29
30
  static readonly RULE_tagSpec = 1;
30
31
  static readonly RULE_string = 2;
31
- static readonly RULE_propName = 3;
32
- static readonly RULE_eqValue = 4;
33
- static readonly RULE_arrayElement = 5;
34
- static readonly RULE_reference = 6;
35
- static readonly RULE_arrayValue = 7;
36
- static readonly RULE_properties = 8;
32
+ static readonly RULE_identifier = 3;
33
+ static readonly RULE_propName = 4;
34
+ static readonly RULE_eqValue = 5;
35
+ static readonly RULE_arrayElement = 6;
36
+ static readonly RULE_reference = 7;
37
+ static readonly RULE_arrayValue = 8;
38
+ static readonly RULE_properties = 9;
37
39
  static readonly ruleNames: string[];
38
40
  private static readonly _LITERAL_NAMES;
39
41
  private static readonly _SYMBOLIC_NAMES;
@@ -47,6 +49,7 @@ export declare class MalloyTagParser extends Parser {
47
49
  tagLine(): TagLineContext;
48
50
  tagSpec(): TagSpecContext;
49
51
  string(): StringContext;
52
+ identifier(): IdentifierContext;
50
53
  propName(): PropNameContext;
51
54
  eqValue(): EqValueContext;
52
55
  arrayElement(): ArrayElementContext;
@@ -100,16 +103,23 @@ export declare class TagDefContext extends TagSpecContext {
100
103
  }
101
104
  export declare class StringContext extends ParserRuleContext {
102
105
  SQ_STRING(): TerminalNode | undefined;
103
- NUMERIC_LITERAL(): TerminalNode | undefined;
104
106
  DQ_STRING(): TerminalNode | undefined;
105
107
  BARE_STRING(): TerminalNode | undefined;
108
+ NUMERIC_LITERAL(): TerminalNode | undefined;
109
+ constructor(parent: ParserRuleContext | undefined, invokingState: number);
110
+ get ruleIndex(): number;
111
+ accept<Result>(visitor: MalloyTagVisitor<Result>): Result;
112
+ }
113
+ export declare class IdentifierContext extends ParserRuleContext {
114
+ BQ_STRING(): TerminalNode | undefined;
115
+ BARE_STRING(): TerminalNode | undefined;
106
116
  constructor(parent: ParserRuleContext | undefined, invokingState: number);
107
117
  get ruleIndex(): number;
108
118
  accept<Result>(visitor: MalloyTagVisitor<Result>): Result;
109
119
  }
110
120
  export declare class PropNameContext extends ParserRuleContext {
111
- string(): StringContext[];
112
- string(i: number): StringContext;
121
+ identifier(): IdentifierContext[];
122
+ identifier(i: number): IdentifierContext;
113
123
  DOT(): TerminalNode[];
114
124
  DOT(i: number): TerminalNode;
115
125
  constructor(parent: ParserRuleContext | undefined, invokingState: number);