@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
package/dist/tags.js
CHANGED
|
@@ -326,7 +326,9 @@ class TaglineParser extends tree_1.AbstractParseTreeVisitor {
|
|
|
326
326
|
return new Tag({ eq: getString(ctx) });
|
|
327
327
|
}
|
|
328
328
|
getPropName(ctx) {
|
|
329
|
-
return ctx
|
|
329
|
+
return ctx
|
|
330
|
+
.identifier()
|
|
331
|
+
.map(cx => cx.BARE_STRING() ? cx.text : (0, parse_utils_1.parseString)(cx.text, cx.text[0]));
|
|
330
332
|
}
|
|
331
333
|
getTags(tags, tagLine) {
|
|
332
334
|
for (const tagSpec of tags) {
|