@malloydata/malloy 0.0.407 → 0.0.409
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/MalloyLexer.d.ts +151 -156
- package/dist/lang/lib/Malloy/MalloyLexer.js +1413 -1449
- package/dist/lang/lib/Malloy/MalloyParser.d.ts +151 -156
- package/dist/lang/lib/Malloy/MalloyParser.js +678 -683
- package/dist/lang/prettify/tokens.js +1 -3
- package/dist/lang/syntax-errors/malloy-parser-error-listener.js +0 -4
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +4 -4
|
@@ -46,7 +46,6 @@ exports.SECTION_TOKENS = new Set([
|
|
|
46
46
|
exports.L.PARTITION_BY,
|
|
47
47
|
exports.L.PRIMARY_KEY,
|
|
48
48
|
exports.L.PRIVATE,
|
|
49
|
-
exports.L.PROJECT,
|
|
50
49
|
exports.L.PUBLIC,
|
|
51
50
|
exports.L.QUERY,
|
|
52
51
|
exports.L.RENAME,
|
|
@@ -88,8 +87,7 @@ exports.CALL_HUG_AFTER = new Set([
|
|
|
88
87
|
exports.L.COMPOSE,
|
|
89
88
|
exports.L.CAST,
|
|
90
89
|
exports.L.NOW,
|
|
91
|
-
|
|
92
|
-
// Ungrouped / level-modifier function-style calls.
|
|
90
|
+
// Level-modifier function-style calls.
|
|
93
91
|
exports.L.ALL,
|
|
94
92
|
exports.L.EXCLUDE,
|
|
95
93
|
// Timeframe truncation keywords used as functions: year(x), month(x), …
|
|
@@ -199,10 +199,6 @@ exports.malloyCustomErrorCases = [
|
|
|
199
199
|
ruleContextOptions: ['vExpr'],
|
|
200
200
|
precedingTokenOptions: [[MalloyParser_1.MalloyParser.IDENTIFIER]],
|
|
201
201
|
},
|
|
202
|
-
{
|
|
203
|
-
errorMessage: "The 'project:' keyword is no longer supported. Use 'select:' instead.",
|
|
204
|
-
offendingSymbol: MalloyParser_1.MalloyParser.PROJECT,
|
|
205
|
-
},
|
|
206
202
|
{
|
|
207
203
|
errorMessage: "Unsupported keyword 'as'. Use 'is' to name something (ex: `dimension: name is expression`)",
|
|
208
204
|
offendingSymbolTextOptions: ['as'],
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MALLOY_VERSION = "0.0.
|
|
1
|
+
export declare const MALLOY_VERSION = "0.0.409";
|
package/dist/version.js
CHANGED
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.MALLOY_VERSION = void 0;
|
|
4
4
|
// generated with 'generate-version-file' script; do not edit manually
|
|
5
|
-
exports.MALLOY_VERSION = '0.0.
|
|
5
|
+
exports.MALLOY_VERSION = '0.0.409';
|
|
6
6
|
//# sourceMappingURL=version.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@malloydata/malloy",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.409",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./dist/index.js",
|
|
@@ -51,9 +51,9 @@
|
|
|
51
51
|
"generate-version-file": "VERSION=$(npm pkg get version --workspaces=false | tr -d \\\")\necho \"// generated with 'generate-version-file' script; do not edit manually\\nexport const MALLOY_VERSION = '$VERSION';\" > src/version.ts"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@malloydata/malloy-filter": "0.0.
|
|
55
|
-
"@malloydata/malloy-interfaces": "0.0.
|
|
56
|
-
"@malloydata/malloy-tag": "0.0.
|
|
54
|
+
"@malloydata/malloy-filter": "0.0.409",
|
|
55
|
+
"@malloydata/malloy-interfaces": "0.0.409",
|
|
56
|
+
"@malloydata/malloy-tag": "0.0.409",
|
|
57
57
|
"@noble/hashes": "^1.8.0",
|
|
58
58
|
"antlr4ts": "^0.5.0-alpha.4",
|
|
59
59
|
"assert": "^2.0.0",
|