@artel/artc 0.6.25220 → 0.6.25222
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/build/Cli.js +3 -3
- package/build/api/Api.js +6 -4
- package/build/api/ApiNodeJS.js +3 -3
- package/build/api/ApiServices.js +394 -284
- package/build/{chunk-ASXPPFGP.js → chunk-MBMOAUK7.js} +3 -3
- package/build/{chunk-RHY36EE7.js → chunk-ODWG5ZXF.js} +4060 -2261
- package/build/{chunk-AUDD2JDS.js → chunk-UZK7JCND.js} +3 -3
- package/build/types/analysis/Analyzer.d.ts +53 -6
- package/build/types/analysis/ControlFlowGraphBuilder.d.ts +121 -0
- package/build/types/analysis/ControlFlowGraphVisualizer.d.ts +12 -0
- package/build/types/analysis/DiagnosticCollector.d.ts +3 -0
- package/build/types/analysis/NodeTypeUtils.d.ts +4 -1
- package/build/types/analysis/SemanticContext.d.ts +7 -0
- package/build/types/analysis/SemanticContextBuilder.d.ts +2 -0
- package/build/types/analysis/StatementBlockScopeBuilder.d.ts +19 -17
- package/build/types/analysis/TypeNarrower.d.ts +62 -0
- package/build/types/common/Range.d.ts +1 -0
- package/build/types/diagnostic/DiagnosticCode.d.ts +131 -123
- package/build/types/diagnostic/DiagnosticData.d.ts +2 -1
- package/build/types/emitter/IrBuilder.d.ts +3 -1
- package/build/types/emitter/IrToJs.d.ts +1 -0
- package/build/types/emitter/Transformer.d.ts +2 -0
- package/build/types/emitter/ir/Nodes.d.ts +86 -78
- package/build/types/emitter/ir/types.d.ts +2 -2
- package/build/types/parser/Scanner.d.ts +1 -0
- package/build/types/services/CompletionService.d.ts +2 -1
- package/build/types/services/DisplayService.d.ts +4 -2
- package/build/types/services/NodeSemanticInfo.d.ts +4 -2
- package/build/types/tree/KeywordKind.d.ts +41 -40
- package/build/types/tree/NodeKind.d.ts +63 -60
- package/build/types/tree/green/Nodes.d.ts +124 -86
- package/build/types/tree/green/SyntaxFactory.d.ts +12 -10
- package/build/types/tree/green/SyntaxToCode.d.ts +1 -0
- package/build/types/tree/green/Token.d.ts +1 -1
- package/build/types/tree/green/Utils.d.ts +1 -1
- package/build/types/tree/red/Nodes.d.ts +103 -63
- package/build/types/tree/red/Utils.d.ts +1 -1
- package/build/types/types/TypeFactory.d.ts +2 -1
- package/package.json +1 -1
@@ -18,44 +18,45 @@ export declare enum KeywordKind {
|
|
18
18
|
Type = 16,
|
19
19
|
Basic = 17,
|
20
20
|
Import = 18,
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
21
|
+
Important = 19,
|
22
|
+
Error = 20,
|
23
|
+
Finally = 21,
|
24
|
+
And = 22,
|
25
|
+
Or = 23,
|
26
|
+
Xor = 24,
|
27
|
+
While = 25,
|
28
|
+
Loop = 26,
|
29
|
+
RepeatWhile = 27,
|
30
|
+
Yield = 28,
|
31
|
+
When = 29,
|
32
|
+
Creation = 30,
|
33
|
+
Catch = 31,
|
34
|
+
BreakLoop = 32,
|
35
|
+
ContinueLoop = 33,
|
36
|
+
For = 34,
|
37
|
+
Const = 35,
|
38
|
+
Hidden = 36,
|
39
|
+
Abstract = 37,
|
40
|
+
Redefinable = 38,
|
41
|
+
Redefined = 39,
|
42
|
+
Async = 40,
|
43
|
+
Static = 41,
|
44
|
+
As = 42,
|
45
|
+
Not = 43,
|
46
|
+
Switch = 44,
|
47
|
+
Case = 45,
|
48
|
+
Dispose = 46,
|
49
|
+
Destruction = 47,
|
50
|
+
InHierarchy = 48,
|
51
|
+
InFile = 49,
|
52
|
+
InPackage = 50,
|
53
|
+
InType = 51,
|
54
|
+
Yes = 52,
|
55
|
+
No = 53,
|
56
|
+
Reference = 54,
|
57
|
+
Translations = 55,
|
58
|
+
Base = 56,
|
59
|
+
None = 57,
|
60
|
+
Get = 58,
|
61
|
+
Set = 59
|
61
62
|
}
|
@@ -93,64 +93,67 @@ export declare enum NodeKind {
|
|
93
93
|
AssignmentStatement = 91,
|
94
94
|
StatementList = 92,
|
95
95
|
StatementBlock = 93,
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
96
|
+
FunctionBlock = 94,
|
97
|
+
BreakLoopStatement = 95,
|
98
|
+
ContinueLoopStatement = 96,
|
99
|
+
DisposeStatement = 97,
|
100
|
+
RunStatement = 98,
|
101
|
+
TryStatement = 99,
|
102
|
+
CatchClause = 100,
|
103
|
+
ErrorVariableDeclaration = 101,
|
104
|
+
FinallyClause = 102,
|
105
|
+
EmptyStatement = 103,
|
106
|
+
ErrorStatement = 104,
|
107
|
+
ImportantStatement = 105,
|
108
|
+
ExpressionStatement = 106,
|
109
|
+
EnumerationVariableList = 107,
|
110
|
+
ForStatement = 108,
|
111
|
+
IfStatement = 109,
|
112
|
+
ElseIfClauseList = 110,
|
113
|
+
ElseIfClause = 111,
|
114
|
+
ElseClause = 112,
|
115
|
+
InvalidStatement = 113,
|
116
|
+
NestedMethodDeclarationStatement = 114,
|
117
|
+
LocalVariableDeclarationStatement = 115,
|
118
|
+
LoopStatement = 116,
|
119
|
+
ReturnStatement = 117,
|
120
|
+
CaseClauseList = 118,
|
121
|
+
SwitchStatement = 119,
|
122
|
+
MatchExpressionList = 120,
|
123
|
+
CaseClause = 121,
|
124
|
+
WhileStatement = 122,
|
125
|
+
YieldStatement = 123,
|
126
|
+
TranslationParameterList = 124,
|
127
|
+
TranslationParameterClause = 125,
|
128
|
+
ConstructorTranslation = 126,
|
129
|
+
IndexerTranslationParameterClause = 127,
|
130
|
+
IndexerTranslation = 128,
|
131
|
+
TranslationTypeParameterList = 129,
|
132
|
+
TranslationTypeParameterClause = 130,
|
133
|
+
PackageMethodTranslation = 131,
|
134
|
+
TypeMethodTranslation = 132,
|
135
|
+
MethodTypeTranslation = 133,
|
136
|
+
PackageImportTranslation = 134,
|
137
|
+
QualifiedName = 135,
|
138
|
+
PackageVariableTranslation = 136,
|
139
|
+
TypeVariableOrVariantTranslation = 137,
|
140
|
+
TypeMemberTranslationList = 138,
|
141
|
+
TypeTranslation = 139,
|
142
|
+
TextLiteralTranslation = 140,
|
143
|
+
TextTemplateLiteralTranslation = 141,
|
144
|
+
VariantDeclaration = 142,
|
145
|
+
TypeParameterDeclaration = 143,
|
146
|
+
ParameterDeclaration = 144,
|
147
|
+
Argument = 145,
|
148
|
+
TagList = 146,
|
149
|
+
Tag = 147,
|
150
|
+
ModifierList = 148,
|
151
|
+
Modifier = 149,
|
152
|
+
ParameterClause = 150,
|
153
|
+
ParameterList = 151,
|
154
|
+
TypeArgumentClause = 152,
|
155
|
+
TypeArgumentList = 153,
|
156
|
+
TypeParameterClause = 154,
|
157
|
+
TypeParameterList = 155,
|
158
|
+
TypeAnnotation = 156
|
156
159
|
}
|