@malloydata/malloy 0.0.70 → 0.0.71-dev230811214318

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.
@@ -1,158 +0,0 @@
1
- import { ParseTreeListener } from "antlr4ts/tree/ParseTreeListener";
2
- import { TagEqContext } from "./MalloyTagParser";
3
- import { TagReplacePropertiesContext } from "./MalloyTagParser";
4
- import { TagUpdatePropertiesContext } from "./MalloyTagParser";
5
- import { TagDefContext } from "./MalloyTagParser";
6
- import { TagLineContext } from "./MalloyTagParser";
7
- import { TagSpecContext } from "./MalloyTagParser";
8
- import { StringContext } from "./MalloyTagParser";
9
- import { PropNameContext } from "./MalloyTagParser";
10
- import { EqValueContext } from "./MalloyTagParser";
11
- import { ArrayElementContext } from "./MalloyTagParser";
12
- import { ReferenceContext } from "./MalloyTagParser";
13
- import { ArrayValueContext } from "./MalloyTagParser";
14
- import { PropertiesContext } from "./MalloyTagParser";
15
- /**
16
- * This interface defines a complete listener for a parse tree produced by
17
- * `MalloyTagParser`.
18
- */
19
- export interface MalloyTagListener extends ParseTreeListener {
20
- /**
21
- * Enter a parse tree produced by the `tagEq`
22
- * labeled alternative in `MalloyTagParser.tagSpec`.
23
- * @param ctx the parse tree
24
- */
25
- enterTagEq?: (ctx: TagEqContext) => void;
26
- /**
27
- * Exit a parse tree produced by the `tagEq`
28
- * labeled alternative in `MalloyTagParser.tagSpec`.
29
- * @param ctx the parse tree
30
- */
31
- exitTagEq?: (ctx: TagEqContext) => void;
32
- /**
33
- * Enter a parse tree produced by the `tagReplaceProperties`
34
- * labeled alternative in `MalloyTagParser.tagSpec`.
35
- * @param ctx the parse tree
36
- */
37
- enterTagReplaceProperties?: (ctx: TagReplacePropertiesContext) => void;
38
- /**
39
- * Exit a parse tree produced by the `tagReplaceProperties`
40
- * labeled alternative in `MalloyTagParser.tagSpec`.
41
- * @param ctx the parse tree
42
- */
43
- exitTagReplaceProperties?: (ctx: TagReplacePropertiesContext) => void;
44
- /**
45
- * Enter a parse tree produced by the `tagUpdateProperties`
46
- * labeled alternative in `MalloyTagParser.tagSpec`.
47
- * @param ctx the parse tree
48
- */
49
- enterTagUpdateProperties?: (ctx: TagUpdatePropertiesContext) => void;
50
- /**
51
- * Exit a parse tree produced by the `tagUpdateProperties`
52
- * labeled alternative in `MalloyTagParser.tagSpec`.
53
- * @param ctx the parse tree
54
- */
55
- exitTagUpdateProperties?: (ctx: TagUpdatePropertiesContext) => void;
56
- /**
57
- * Enter a parse tree produced by the `tagDef`
58
- * labeled alternative in `MalloyTagParser.tagSpec`.
59
- * @param ctx the parse tree
60
- */
61
- enterTagDef?: (ctx: TagDefContext) => void;
62
- /**
63
- * Exit a parse tree produced by the `tagDef`
64
- * labeled alternative in `MalloyTagParser.tagSpec`.
65
- * @param ctx the parse tree
66
- */
67
- exitTagDef?: (ctx: TagDefContext) => void;
68
- /**
69
- * Enter a parse tree produced by `MalloyTagParser.tagLine`.
70
- * @param ctx the parse tree
71
- */
72
- enterTagLine?: (ctx: TagLineContext) => void;
73
- /**
74
- * Exit a parse tree produced by `MalloyTagParser.tagLine`.
75
- * @param ctx the parse tree
76
- */
77
- exitTagLine?: (ctx: TagLineContext) => void;
78
- /**
79
- * Enter a parse tree produced by `MalloyTagParser.tagSpec`.
80
- * @param ctx the parse tree
81
- */
82
- enterTagSpec?: (ctx: TagSpecContext) => void;
83
- /**
84
- * Exit a parse tree produced by `MalloyTagParser.tagSpec`.
85
- * @param ctx the parse tree
86
- */
87
- exitTagSpec?: (ctx: TagSpecContext) => void;
88
- /**
89
- * Enter a parse tree produced by `MalloyTagParser.string`.
90
- * @param ctx the parse tree
91
- */
92
- enterString?: (ctx: StringContext) => void;
93
- /**
94
- * Exit a parse tree produced by `MalloyTagParser.string`.
95
- * @param ctx the parse tree
96
- */
97
- exitString?: (ctx: StringContext) => void;
98
- /**
99
- * Enter a parse tree produced by `MalloyTagParser.propName`.
100
- * @param ctx the parse tree
101
- */
102
- enterPropName?: (ctx: PropNameContext) => void;
103
- /**
104
- * Exit a parse tree produced by `MalloyTagParser.propName`.
105
- * @param ctx the parse tree
106
- */
107
- exitPropName?: (ctx: PropNameContext) => void;
108
- /**
109
- * Enter a parse tree produced by `MalloyTagParser.eqValue`.
110
- * @param ctx the parse tree
111
- */
112
- enterEqValue?: (ctx: EqValueContext) => void;
113
- /**
114
- * Exit a parse tree produced by `MalloyTagParser.eqValue`.
115
- * @param ctx the parse tree
116
- */
117
- exitEqValue?: (ctx: EqValueContext) => void;
118
- /**
119
- * Enter a parse tree produced by `MalloyTagParser.arrayElement`.
120
- * @param ctx the parse tree
121
- */
122
- enterArrayElement?: (ctx: ArrayElementContext) => void;
123
- /**
124
- * Exit a parse tree produced by `MalloyTagParser.arrayElement`.
125
- * @param ctx the parse tree
126
- */
127
- exitArrayElement?: (ctx: ArrayElementContext) => void;
128
- /**
129
- * Enter a parse tree produced by `MalloyTagParser.reference`.
130
- * @param ctx the parse tree
131
- */
132
- enterReference?: (ctx: ReferenceContext) => void;
133
- /**
134
- * Exit a parse tree produced by `MalloyTagParser.reference`.
135
- * @param ctx the parse tree
136
- */
137
- exitReference?: (ctx: ReferenceContext) => void;
138
- /**
139
- * Enter a parse tree produced by `MalloyTagParser.arrayValue`.
140
- * @param ctx the parse tree
141
- */
142
- enterArrayValue?: (ctx: ArrayValueContext) => void;
143
- /**
144
- * Exit a parse tree produced by `MalloyTagParser.arrayValue`.
145
- * @param ctx the parse tree
146
- */
147
- exitArrayValue?: (ctx: ArrayValueContext) => void;
148
- /**
149
- * Enter a parse tree produced by `MalloyTagParser.properties`.
150
- * @param ctx the parse tree
151
- */
152
- enterProperties?: (ctx: PropertiesContext) => void;
153
- /**
154
- * Exit a parse tree produced by `MalloyTagParser.properties`.
155
- * @param ctx the parse tree
156
- */
157
- exitProperties?: (ctx: PropertiesContext) => void;
158
- }
@@ -1,4 +0,0 @@
1
- "use strict";
2
- // Generated from MalloyTag.g4 by ANTLR 4.9.0-SNAPSHOT
3
- Object.defineProperty(exports, "__esModule", { value: true });
4
- //# sourceMappingURL=MalloyTagListener.js.map