@malloydata/malloy 0.0.132-dev240315233415 → 0.0.132-dev240318200424
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 +2 -2
- package/dist/index.js +2 -4
- package/dist/lang/ast/index.d.ts +0 -2
- package/dist/lang/ast/index.js +0 -2
- package/dist/lang/index.d.ts +0 -2
- package/dist/lang/index.js +1 -3
- package/dist/lang/lib/Malloy/MalloyLexer.d.ts +125 -127
- package/dist/lang/lib/Malloy/MalloyLexer.js +1000 -1017
- package/dist/lang/lib/Malloy/MalloyParser.d.ts +245 -287
- package/dist/lang/lib/Malloy/MalloyParser.js +1808 -2072
- package/dist/lang/lib/Malloy/MalloyParserListener.d.ts +0 -33
- package/dist/lang/lib/Malloy/MalloyParserVisitor.d.ts +0 -21
- package/dist/lang/malloy-to-ast.d.ts +0 -2
- package/dist/lang/malloy-to-ast.js +0 -35
- package/dist/lang/parse-malloy.js +5 -41
- package/dist/lang/parse-tree-walkers/document-symbol-walker.js +0 -10
- package/dist/lang/test/locations.spec.js +0 -23
- package/dist/lang/test/parse.spec.js +0 -11
- package/dist/lang/test/sql-block.spec.js +2 -81
- package/dist/lang/translate-response.d.ts +0 -2
- package/dist/malloy.d.ts +1 -29
- package/dist/malloy.js +1 -37
- package/package.json +1 -1
- package/dist/lang/ast/source-elements/from-sql-source.d.ts +0 -7
- package/dist/lang/ast/source-elements/from-sql-source.js +0 -68
- package/dist/lang/ast/sql-elements/sql-statement.d.ts +0 -21
- package/dist/lang/ast/sql-elements/sql-statement.js +0 -91
- package/dist/lang/parse-tree-walkers/document-highlight-walker.d.ts +0 -83
- package/dist/lang/parse-tree-walkers/document-highlight-walker.js +0 -388
package/dist/index.d.ts
CHANGED
|
@@ -2,10 +2,10 @@ export { DuckDBDialect, StandardSQLDialect, PostgresDialect, SnowflakeDialect, r
|
|
|
2
2
|
export type { DialectFieldList, DialectFunctionOverloadDef, QueryInfo, } from './dialect';
|
|
3
3
|
export type { QueryDataRow, Fragment, StructDef, StructRelationship, NamedStructDefs, MalloyQueryData, AtomicFieldType as AtomicFieldTypeInner, DateUnit, ExtractUnit, TimestampUnit, TimeFieldType, QueryData, QueryValue, FieldTypeDef, Expr, DialectFragment, TimeValue, FilterExpression, SQLBlock, FieldAtomicDef, FieldDef, PipeSegment, QueryFieldDef, IndexFieldDef, TurtleDef, SearchValueMapResult, SearchIndexResult, ModelDef, Query, QueryResult, QueryRunStats, NamedQuery, NamedModelObject, ExpressionType, FunctionDef, FunctionOverloadDef, FunctionParameterDef, ExpressionValueType, TypeDesc, FieldValueType, ExpressionTypeDesc, FunctionParamTypeDesc, DocumentLocation, DocumentRange, DocumentPosition, Sampling, TypecastFragment, Annotation, FieldAtomicTypeDef, SQLBlockStructDef, } from './model';
|
|
4
4
|
export { Segment, isSamplingEnable, isSamplingPercent, isSamplingRows, mkExpr, expressionIsCalculation, indent, } from './model';
|
|
5
|
-
export {
|
|
5
|
+
export { MalloyTranslator, } from './lang';
|
|
6
6
|
export type { LogMessage, TranslateResponse } from './lang';
|
|
7
7
|
export { Malloy, Runtime, AtomicFieldType, ConnectionRuntime, SingleConnectionRuntime, EmptyURLReader, InMemoryURLReader, FixedConnectionMap, MalloyError, JoinRelationship, SourceRelationship, DateTimeframe, TimestampTimeframe, PreparedResult, Result, QueryMaterializer, CSVWriter, JSONWriter, Parse, DataWriter, Explore, } from './malloy';
|
|
8
|
-
export type { Model, PreparedQuery, Field, AtomicField, ExploreField, QueryField, SortableField, DataArray, DataRecord, DataColumn, DataArrayOrRecord, Loggable, ModelMaterializer, DocumentSymbol,
|
|
8
|
+
export type { Model, PreparedQuery, Field, AtomicField, ExploreField, QueryField, SortableField, DataArray, DataRecord, DataColumn, DataArrayOrRecord, Loggable, ModelMaterializer, DocumentSymbol, ResultJSON, PreparedResultMaterializer, SQLBlockMaterializer, ExploreMaterializer, WriteStream, SerializedExplore, } from './malloy';
|
|
9
9
|
export type { QueryOptionsReader, RunSQLOptions } from './run_sql_options';
|
|
10
10
|
export type { Connection, ConnectionConfig, ConnectionFactory, ConnectionParameter, ConnectionParameterValue, ConnectionConfigSchema, FetchSchemaOptions, InfoConnection, LookupConnection, ModelString, ModelURL, PersistSQLResults, PooledConnection, QueryString, QueryURL, TestableConnection, StreamingConnection, URLReader, } from './runtime_types';
|
|
11
11
|
export { toAsyncGenerator } from './connection_utils';
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DataWriter = exports.Parse = exports.JSONWriter = exports.CSVWriter = exports.QueryMaterializer = exports.Result = exports.PreparedResult = exports.TimestampTimeframe = exports.DateTimeframe = exports.SourceRelationship = exports.JoinRelationship = exports.MalloyError = exports.FixedConnectionMap = exports.InMemoryURLReader = exports.EmptyURLReader = exports.SingleConnectionRuntime = exports.ConnectionRuntime = exports.AtomicFieldType = exports.Runtime = exports.Malloy = exports.MalloyTranslator = exports.
|
|
4
|
-
exports.Tag = exports.toAsyncGenerator =
|
|
3
|
+
exports.Explore = exports.DataWriter = exports.Parse = exports.JSONWriter = exports.CSVWriter = exports.QueryMaterializer = exports.Result = exports.PreparedResult = exports.TimestampTimeframe = exports.DateTimeframe = exports.SourceRelationship = exports.JoinRelationship = exports.MalloyError = exports.FixedConnectionMap = exports.InMemoryURLReader = exports.EmptyURLReader = exports.SingleConnectionRuntime = exports.ConnectionRuntime = exports.AtomicFieldType = exports.Runtime = exports.Malloy = exports.MalloyTranslator = exports.indent = exports.expressionIsCalculation = exports.mkExpr = exports.isSamplingRows = exports.isSamplingPercent = exports.isSamplingEnable = exports.Segment = exports.FUNCTIONS = exports.Dialect = exports.spread = exports.literal = exports.params = exports.param = exports.sqlFragment = exports.makeParam = exports.sql = exports.maxScalar = exports.minAggregate = exports.anyExprType = exports.minScalar = exports.overload = exports.qtz = exports.arg = exports.registerDialect = exports.SnowflakeDialect = exports.PostgresDialect = exports.StandardSQLDialect = exports.DuckDBDialect = void 0;
|
|
4
|
+
exports.Tag = exports.toAsyncGenerator = void 0;
|
|
5
5
|
/*
|
|
6
6
|
* Copyright 2023 Google LLC
|
|
7
7
|
*
|
|
@@ -56,8 +56,6 @@ Object.defineProperty(exports, "mkExpr", { enumerable: true, get: function () {
|
|
|
56
56
|
Object.defineProperty(exports, "expressionIsCalculation", { enumerable: true, get: function () { return model_1.expressionIsCalculation; } });
|
|
57
57
|
Object.defineProperty(exports, "indent", { enumerable: true, get: function () { return model_1.indent; } });
|
|
58
58
|
var lang_1 = require("./lang");
|
|
59
|
-
// Neede for VSCode extension
|
|
60
|
-
Object.defineProperty(exports, "HighlightType", { enumerable: true, get: function () { return lang_1.HighlightType; } });
|
|
61
59
|
// Needed for tests only
|
|
62
60
|
Object.defineProperty(exports, "MalloyTranslator", { enumerable: true, get: function () { return lang_1.MalloyTranslator; } });
|
|
63
61
|
var malloy_1 = require("./malloy");
|
package/dist/lang/ast/index.d.ts
CHANGED
|
@@ -91,10 +91,8 @@ export * from './query-properties/sampling';
|
|
|
91
91
|
export * from './query-properties/top';
|
|
92
92
|
export * from './source-elements/named-source';
|
|
93
93
|
export * from './source-elements/query-source';
|
|
94
|
-
export * from './source-elements/from-sql-source';
|
|
95
94
|
export * from './source-elements/sql-source';
|
|
96
95
|
export * from './source-elements/table-source';
|
|
97
|
-
export * from './sql-elements/sql-statement';
|
|
98
96
|
export * from './sql-elements/sql-string';
|
|
99
97
|
export * from './types/annotation-elements';
|
|
100
98
|
export * from './types/comparison';
|
package/dist/lang/ast/index.js
CHANGED
|
@@ -129,10 +129,8 @@ __exportStar(require("./query-properties/sampling"), exports);
|
|
|
129
129
|
__exportStar(require("./query-properties/top"), exports);
|
|
130
130
|
__exportStar(require("./source-elements/named-source"), exports);
|
|
131
131
|
__exportStar(require("./source-elements/query-source"), exports);
|
|
132
|
-
__exportStar(require("./source-elements/from-sql-source"), exports);
|
|
133
132
|
__exportStar(require("./source-elements/sql-source"), exports);
|
|
134
133
|
__exportStar(require("./source-elements/table-source"), exports);
|
|
135
|
-
__exportStar(require("./sql-elements/sql-statement"), exports);
|
|
136
134
|
__exportStar(require("./sql-elements/sql-string"), exports);
|
|
137
135
|
__exportStar(require("./types/annotation-elements"), exports);
|
|
138
136
|
__exportStar(require("./types/comparison"), exports);
|
package/dist/lang/index.d.ts
CHANGED
|
@@ -3,8 +3,6 @@ export type { UpdateData, SchemaData, URLData, SQLBlockData, } from './parse-mal
|
|
|
3
3
|
export type { TranslateResponse } from './translate-response';
|
|
4
4
|
export { exploreQueryWalkerBuilder } from './parse-tree-walkers/explore-query-walker';
|
|
5
5
|
export type { ExploreClauseRef } from './parse-tree-walkers/explore-query-walker';
|
|
6
|
-
export { HighlightType } from './parse-tree-walkers/document-highlight-walker';
|
|
7
|
-
export type { DocumentHighlight } from './parse-tree-walkers/document-highlight-walker';
|
|
8
6
|
export type { DocumentSymbol } from './parse-tree-walkers/document-symbol-walker';
|
|
9
7
|
export type { DocumentCompletion } from './parse-tree-walkers/document-completion-walker';
|
|
10
8
|
export type { LogMessage } from './parse-log';
|
package/dist/lang/index.js
CHANGED
|
@@ -22,11 +22,9 @@
|
|
|
22
22
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
23
23
|
*/
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
-
exports.
|
|
25
|
+
exports.exploreQueryWalkerBuilder = exports.MalloyTranslator = void 0;
|
|
26
26
|
var parse_malloy_1 = require("./parse-malloy");
|
|
27
27
|
Object.defineProperty(exports, "MalloyTranslator", { enumerable: true, get: function () { return parse_malloy_1.MalloyTranslator; } });
|
|
28
28
|
var explore_query_walker_1 = require("./parse-tree-walkers/explore-query-walker");
|
|
29
29
|
Object.defineProperty(exports, "exploreQueryWalkerBuilder", { enumerable: true, get: function () { return explore_query_walker_1.exploreQueryWalkerBuilder; } });
|
|
30
|
-
var document_highlight_walker_1 = require("./parse-tree-walkers/document-highlight-walker");
|
|
31
|
-
Object.defineProperty(exports, "HighlightType", { enumerable: true, get: function () { return document_highlight_walker_1.HighlightType; } });
|
|
32
30
|
//# sourceMappingURL=index.js.map
|
|
@@ -31,133 +31,131 @@ export declare class MalloyLexer extends Lexer {
|
|
|
31
31
|
static readonly SAMPLE = 26;
|
|
32
32
|
static readonly SELECT = 27;
|
|
33
33
|
static readonly SOURCE = 28;
|
|
34
|
-
static readonly
|
|
35
|
-
static readonly
|
|
36
|
-
static readonly
|
|
37
|
-
static readonly
|
|
38
|
-
static readonly
|
|
39
|
-
static readonly
|
|
40
|
-
static readonly
|
|
41
|
-
static readonly
|
|
42
|
-
static readonly
|
|
43
|
-
static readonly
|
|
44
|
-
static readonly
|
|
45
|
-
static readonly
|
|
46
|
-
static readonly
|
|
47
|
-
static readonly
|
|
48
|
-
static readonly
|
|
49
|
-
static readonly
|
|
50
|
-
static readonly
|
|
51
|
-
static readonly
|
|
52
|
-
static readonly
|
|
53
|
-
static readonly
|
|
54
|
-
static readonly
|
|
55
|
-
static readonly
|
|
56
|
-
static readonly
|
|
57
|
-
static readonly
|
|
58
|
-
static readonly
|
|
59
|
-
static readonly
|
|
60
|
-
static readonly
|
|
61
|
-
static readonly
|
|
62
|
-
static readonly
|
|
63
|
-
static readonly
|
|
64
|
-
static readonly
|
|
65
|
-
static readonly
|
|
66
|
-
static readonly
|
|
67
|
-
static readonly
|
|
68
|
-
static readonly
|
|
69
|
-
static readonly
|
|
70
|
-
static readonly
|
|
71
|
-
static readonly
|
|
72
|
-
static readonly
|
|
73
|
-
static readonly
|
|
74
|
-
static readonly
|
|
75
|
-
static readonly
|
|
76
|
-
static readonly
|
|
77
|
-
static readonly
|
|
78
|
-
static readonly
|
|
79
|
-
static readonly
|
|
80
|
-
static readonly
|
|
81
|
-
static readonly
|
|
82
|
-
static readonly
|
|
83
|
-
static readonly
|
|
84
|
-
static readonly
|
|
85
|
-
static readonly
|
|
86
|
-
static readonly
|
|
87
|
-
static readonly
|
|
88
|
-
static readonly
|
|
89
|
-
static readonly
|
|
90
|
-
static readonly
|
|
91
|
-
static readonly
|
|
92
|
-
static readonly
|
|
93
|
-
static readonly
|
|
94
|
-
static readonly
|
|
95
|
-
static readonly
|
|
96
|
-
static readonly
|
|
97
|
-
static readonly
|
|
98
|
-
static readonly
|
|
99
|
-
static readonly
|
|
100
|
-
static readonly
|
|
101
|
-
static readonly
|
|
102
|
-
static readonly
|
|
103
|
-
static readonly
|
|
104
|
-
static readonly
|
|
105
|
-
static readonly
|
|
106
|
-
static readonly
|
|
107
|
-
static readonly
|
|
108
|
-
static readonly
|
|
109
|
-
static readonly
|
|
110
|
-
static readonly
|
|
111
|
-
static readonly
|
|
112
|
-
static readonly
|
|
113
|
-
static readonly
|
|
114
|
-
static readonly
|
|
115
|
-
static readonly
|
|
116
|
-
static readonly
|
|
117
|
-
static readonly
|
|
118
|
-
static readonly
|
|
119
|
-
static readonly
|
|
120
|
-
static readonly
|
|
121
|
-
static readonly
|
|
122
|
-
static readonly
|
|
123
|
-
static readonly
|
|
124
|
-
static readonly
|
|
125
|
-
static readonly
|
|
126
|
-
static readonly
|
|
127
|
-
static readonly
|
|
128
|
-
static readonly
|
|
129
|
-
static readonly
|
|
130
|
-
static readonly
|
|
131
|
-
static readonly
|
|
132
|
-
static readonly
|
|
133
|
-
static readonly
|
|
134
|
-
static readonly
|
|
135
|
-
static readonly
|
|
136
|
-
static readonly
|
|
137
|
-
static readonly
|
|
138
|
-
static readonly
|
|
139
|
-
static readonly
|
|
140
|
-
static readonly
|
|
141
|
-
static readonly
|
|
142
|
-
static readonly
|
|
143
|
-
static readonly
|
|
144
|
-
static readonly
|
|
145
|
-
static readonly
|
|
146
|
-
static readonly
|
|
147
|
-
static readonly
|
|
148
|
-
static readonly
|
|
149
|
-
static readonly
|
|
150
|
-
static readonly
|
|
151
|
-
static readonly
|
|
152
|
-
static readonly
|
|
153
|
-
static readonly
|
|
154
|
-
static readonly
|
|
155
|
-
static readonly
|
|
156
|
-
static readonly
|
|
157
|
-
static readonly
|
|
158
|
-
static readonly
|
|
159
|
-
static readonly OPEN_CODE = 154;
|
|
160
|
-
static readonly SQL_END = 155;
|
|
34
|
+
static readonly TOP = 29;
|
|
35
|
+
static readonly WHERE = 30;
|
|
36
|
+
static readonly VIEW = 31;
|
|
37
|
+
static readonly TIMEZONE = 32;
|
|
38
|
+
static readonly ALL = 33;
|
|
39
|
+
static readonly AND = 34;
|
|
40
|
+
static readonly AS = 35;
|
|
41
|
+
static readonly ASC = 36;
|
|
42
|
+
static readonly AVG = 37;
|
|
43
|
+
static readonly BOOLEAN = 38;
|
|
44
|
+
static readonly BY = 39;
|
|
45
|
+
static readonly CASE = 40;
|
|
46
|
+
static readonly CAST = 41;
|
|
47
|
+
static readonly CONDITION = 42;
|
|
48
|
+
static readonly COUNT = 43;
|
|
49
|
+
static readonly DATE = 44;
|
|
50
|
+
static readonly DAY = 45;
|
|
51
|
+
static readonly DESC = 46;
|
|
52
|
+
static readonly DISTINCT = 47;
|
|
53
|
+
static readonly ELSE = 48;
|
|
54
|
+
static readonly END = 49;
|
|
55
|
+
static readonly EXCLUDE = 50;
|
|
56
|
+
static readonly EXTEND = 51;
|
|
57
|
+
static readonly FALSE = 52;
|
|
58
|
+
static readonly FULL = 53;
|
|
59
|
+
static readonly FOR = 54;
|
|
60
|
+
static readonly FROM = 55;
|
|
61
|
+
static readonly HAS = 56;
|
|
62
|
+
static readonly HOUR = 57;
|
|
63
|
+
static readonly IMPORT = 58;
|
|
64
|
+
static readonly INNER = 59;
|
|
65
|
+
static readonly IS = 60;
|
|
66
|
+
static readonly JSON = 61;
|
|
67
|
+
static readonly LAST = 62;
|
|
68
|
+
static readonly LEFT = 63;
|
|
69
|
+
static readonly MAX = 64;
|
|
70
|
+
static readonly MIN = 65;
|
|
71
|
+
static readonly MINUTE = 66;
|
|
72
|
+
static readonly MONTH = 67;
|
|
73
|
+
static readonly NOT = 68;
|
|
74
|
+
static readonly NOW = 69;
|
|
75
|
+
static readonly NULL = 70;
|
|
76
|
+
static readonly NUMBER = 71;
|
|
77
|
+
static readonly ON = 72;
|
|
78
|
+
static readonly OR = 73;
|
|
79
|
+
static readonly PICK = 74;
|
|
80
|
+
static readonly QUARTER = 75;
|
|
81
|
+
static readonly RIGHT = 76;
|
|
82
|
+
static readonly SECOND = 77;
|
|
83
|
+
static readonly STRING = 78;
|
|
84
|
+
static readonly SOURCE_KW = 79;
|
|
85
|
+
static readonly SUM = 80;
|
|
86
|
+
static readonly SQL = 81;
|
|
87
|
+
static readonly TABLE = 82;
|
|
88
|
+
static readonly THEN = 83;
|
|
89
|
+
static readonly THIS = 84;
|
|
90
|
+
static readonly TIMESTAMP = 85;
|
|
91
|
+
static readonly TO = 86;
|
|
92
|
+
static readonly TRUE = 87;
|
|
93
|
+
static readonly TURTLE = 88;
|
|
94
|
+
static readonly WEEK = 89;
|
|
95
|
+
static readonly WHEN = 90;
|
|
96
|
+
static readonly WITH = 91;
|
|
97
|
+
static readonly YEAR = 92;
|
|
98
|
+
static readonly UNGROUPED = 93;
|
|
99
|
+
static readonly STRING_ESCAPE = 94;
|
|
100
|
+
static readonly HACKY_REGEX = 95;
|
|
101
|
+
static readonly SQ_STRING = 96;
|
|
102
|
+
static readonly DQ_STRING = 97;
|
|
103
|
+
static readonly BQ_STRING = 98;
|
|
104
|
+
static readonly DOC_ANNOTATION = 99;
|
|
105
|
+
static readonly ANNOTATION = 100;
|
|
106
|
+
static readonly AMPER = 101;
|
|
107
|
+
static readonly ARROW = 102;
|
|
108
|
+
static readonly FAT_ARROW = 103;
|
|
109
|
+
static readonly OPAREN = 104;
|
|
110
|
+
static readonly CPAREN = 105;
|
|
111
|
+
static readonly OBRACK = 106;
|
|
112
|
+
static readonly CBRACK = 107;
|
|
113
|
+
static readonly OCURLY = 108;
|
|
114
|
+
static readonly CCURLY = 109;
|
|
115
|
+
static readonly DOUBLECOLON = 110;
|
|
116
|
+
static readonly TRIPLECOLON = 111;
|
|
117
|
+
static readonly EXCLAM = 112;
|
|
118
|
+
static readonly COLON = 113;
|
|
119
|
+
static readonly COMMA = 114;
|
|
120
|
+
static readonly DOT = 115;
|
|
121
|
+
static readonly LT = 116;
|
|
122
|
+
static readonly GT = 117;
|
|
123
|
+
static readonly EQ = 118;
|
|
124
|
+
static readonly NE = 119;
|
|
125
|
+
static readonly LTE = 120;
|
|
126
|
+
static readonly GTE = 121;
|
|
127
|
+
static readonly PLUS = 122;
|
|
128
|
+
static readonly MINUS = 123;
|
|
129
|
+
static readonly STAR = 124;
|
|
130
|
+
static readonly STARSTAR = 125;
|
|
131
|
+
static readonly SLASH = 126;
|
|
132
|
+
static readonly BAR = 127;
|
|
133
|
+
static readonly SEMI = 128;
|
|
134
|
+
static readonly NOT_MATCH = 129;
|
|
135
|
+
static readonly MATCH = 130;
|
|
136
|
+
static readonly PERCENT = 131;
|
|
137
|
+
static readonly DOUBLE_QMARK = 132;
|
|
138
|
+
static readonly QMARK = 133;
|
|
139
|
+
static readonly LITERAL_TIMESTAMP = 134;
|
|
140
|
+
static readonly LITERAL_HOUR = 135;
|
|
141
|
+
static readonly LITERAL_DAY = 136;
|
|
142
|
+
static readonly LITERAL_QUARTER = 137;
|
|
143
|
+
static readonly LITERAL_MONTH = 138;
|
|
144
|
+
static readonly LITERAL_WEEK = 139;
|
|
145
|
+
static readonly LITERAL_YEAR = 140;
|
|
146
|
+
static readonly IDENTIFIER = 141;
|
|
147
|
+
static readonly PERCENT_LITERAL = 142;
|
|
148
|
+
static readonly NUMERIC_LITERAL = 143;
|
|
149
|
+
static readonly INTEGER_LITERAL = 144;
|
|
150
|
+
static readonly BLOCK_COMMENT = 145;
|
|
151
|
+
static readonly COMMENT_TO_EOL = 146;
|
|
152
|
+
static readonly WHITE_SPACE = 147;
|
|
153
|
+
static readonly SQL_BEGIN = 148;
|
|
154
|
+
static readonly CLOSE_CODE = 149;
|
|
155
|
+
static readonly UNWATED_CHARS_TRAILING_NUMBERS = 150;
|
|
156
|
+
static readonly UNEXPECTED_CHAR = 151;
|
|
157
|
+
static readonly OPEN_CODE = 152;
|
|
158
|
+
static readonly SQL_END = 153;
|
|
161
159
|
static readonly SQL_MODE = 1;
|
|
162
160
|
static readonly channelNames: string[];
|
|
163
161
|
static readonly modeNames: string[];
|