@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.
- package/dist/index.d.ts +1 -1
- package/dist/lang/lib/Malloy/MalloyLexer.d.ts +2 -2
- package/dist/lang/lib/Malloy/MalloyLexer.js +1001 -1003
- package/dist/lang/lib/Malloy/MalloyParser.d.ts +2 -2
- package/dist/lang/lib/Malloy/MalloyParser.js +129 -129
- package/dist/lang/lib/Malloy/MalloyTagLexer.d.ts +5 -4
- package/dist/lang/lib/Malloy/MalloyTagLexer.js +269 -246
- package/dist/lang/lib/Malloy/MalloyTagParser.d.ts +6 -29
- package/dist/lang/lib/Malloy/MalloyTagParser.js +16 -155
- package/dist/malloy.js +8 -2
- package/dist/tags.d.ts +4 -4
- package/dist/tags.js +9 -5
- package/package.json +1 -1
- package/dist/lang/lib/Malloy/MalloyTagListener.d.ts +0 -158
- package/dist/lang/lib/Malloy/MalloyTagListener.js +0 -4
package/dist/index.d.ts
CHANGED
|
@@ -8,4 +8,4 @@ export type { RunSQLOptions } from './run_sql_options';
|
|
|
8
8
|
export { DialectProvider } from './runtime_types';
|
|
9
9
|
export type { URLReader, InfoConnection, LookupConnection, Connection, QueryString, ModelString, QueryURL, ModelURL, PooledConnection, TestableConnection, PersistSQLResults, StreamingConnection, } from './runtime_types';
|
|
10
10
|
export { toAsyncGenerator } from './connection_utils';
|
|
11
|
-
export { Tags, type MalloyTags, type MalloyTagProperties, Tag, type TagDict, } from './tags';
|
|
11
|
+
export { Tags, type MalloyTags, type MalloyTagProperties, type TagParse, Tag, type TagDict, } from './tags';
|
|
@@ -141,8 +141,8 @@ export declare class MalloyLexer extends Lexer {
|
|
|
141
141
|
static readonly LITERAL_YEAR = 136;
|
|
142
142
|
static readonly IDENTIFIER = 137;
|
|
143
143
|
static readonly PERCENT_LITERAL = 138;
|
|
144
|
-
static readonly
|
|
145
|
-
static readonly
|
|
144
|
+
static readonly NUMERIC_LITERAL = 139;
|
|
145
|
+
static readonly INTEGER_LITERAL = 140;
|
|
146
146
|
static readonly BLOCK_COMMENT = 141;
|
|
147
147
|
static readonly COMMENT_TO_EOL = 142;
|
|
148
148
|
static readonly WHITE_SPACE = 143;
|