@malloydata/malloy 0.0.248 → 0.0.249-dev250326193717
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/ast/query-properties/declare-fields.d.ts +1 -1
- package/dist/lang/lib/Malloy/MalloyLexer.d.ts +4 -5
- package/dist/lang/lib/Malloy/MalloyLexer.js +1118 -1123
- package/dist/lang/lib/Malloy/MalloyParser.d.ts +9 -44
- package/dist/lang/lib/Malloy/MalloyParser.js +1783 -2061
- package/dist/lang/lib/Malloy/MalloyParserListener.d.ts +0 -52
- package/dist/lang/lib/Malloy/MalloyParserVisitor.d.ts +0 -32
- package/dist/lang/malloy-to-ast.d.ts +2 -7
- package/dist/lang/malloy-to-ast.js +2 -53
- package/dist/lang/parse-tree-walkers/document-symbol-walker.js +0 -9
- package/dist/lang/parse-tree-walkers/find-external-references.js +1 -9
- package/dist/lang/parse-tree-walkers/find-table-path-walker.js +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +4 -4
|
@@ -4,7 +4,7 @@ import { DefinitionList } from '../types/definition-list';
|
|
|
4
4
|
import type { QueryBuilder } from '../types/query-builder';
|
|
5
5
|
import type { QueryPropertyInterface } from '../types/query-property-interface';
|
|
6
6
|
import { LegalRefinementStage } from '../types/query-property-interface';
|
|
7
|
-
export declare class DeclareFields extends DefinitionList<AtomicFieldDeclaration> implements QueryPropertyInterface {
|
|
7
|
+
export declare abstract class DeclareFields extends DefinitionList<AtomicFieldDeclaration> implements QueryPropertyInterface {
|
|
8
8
|
readonly accessModifier: AccessModifierLabel | undefined;
|
|
9
9
|
elementType: string;
|
|
10
10
|
queryRefinementStage: LegalRefinementStage;
|
|
@@ -168,11 +168,10 @@ export declare class MalloyLexer extends Lexer {
|
|
|
168
168
|
static readonly COMMENT_TO_EOL = 163;
|
|
169
169
|
static readonly WHITE_SPACE = 164;
|
|
170
170
|
static readonly SQL_BEGIN = 165;
|
|
171
|
-
static readonly
|
|
172
|
-
static readonly
|
|
173
|
-
static readonly
|
|
174
|
-
static readonly
|
|
175
|
-
static readonly SQL_END = 170;
|
|
171
|
+
static readonly UNWATED_CHARS_TRAILING_NUMBERS = 166;
|
|
172
|
+
static readonly UNEXPECTED_CHAR = 167;
|
|
173
|
+
static readonly OPEN_CODE = 168;
|
|
174
|
+
static readonly SQL_END = 169;
|
|
176
175
|
static readonly SQL_MODE = 1;
|
|
177
176
|
static readonly channelNames: string[];
|
|
178
177
|
static readonly modeNames: string[];
|