@artel/artc 0.6.25220 → 0.6.25221
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 +4 -4
- package/build/api/ApiNodeJS.js +3 -3
- package/build/api/ApiServices.js +248 -184
- package/build/{chunk-AUDD2JDS.js → chunk-5F65ZJE3.js} +3 -3
- package/build/{chunk-RHY36EE7.js → chunk-X7TMUZ4C.js} +2746 -1292
- package/build/{chunk-ASXPPFGP.js → chunk-XMV7LOUY.js} +3 -3
- package/build/types/analysis/Analyzer.d.ts +46 -2
- 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 +9 -1
- package/build/types/analysis/TypeNarrower.d.ts +57 -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/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/NodeKind.d.ts +45 -44
- package/build/types/tree/green/Nodes.d.ts +77 -67
- 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 +54 -42
- package/build/types/tree/red/Utils.d.ts +1 -1
- package/build/types/types/TypeFactory.d.ts +2 -1
- package/package.json +1 -1
package/build/Cli.js
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
#!/usr/bin/env node
|
2
2
|
import {
|
3
3
|
CommandLineCompiler
|
4
|
-
} from "./chunk-
|
5
|
-
import "./chunk-
|
4
|
+
} from "./chunk-XMV7LOUY.js";
|
5
|
+
import "./chunk-5F65ZJE3.js";
|
6
6
|
import {
|
7
7
|
__async
|
8
|
-
} from "./chunk-
|
8
|
+
} from "./chunk-X7TMUZ4C.js";
|
9
9
|
|
10
10
|
// source/Cli.ts
|
11
11
|
function main() {
|
package/build/api/Api.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import {
|
2
2
|
Compiler
|
3
|
-
} from "../chunk-
|
3
|
+
} from "../chunk-5F65ZJE3.js";
|
4
4
|
import {
|
5
5
|
AccessKind,
|
6
6
|
AccessedMethodValueParameter,
|
@@ -222,6 +222,7 @@ import {
|
|
222
222
|
TreeQuery,
|
223
223
|
TryStatementClausesInfo,
|
224
224
|
TsInteropInputs,
|
225
|
+
TypeAssignabilityFlags,
|
225
226
|
TypeBodySemanticContext,
|
226
227
|
TypeConstructorDeclarationEntity,
|
227
228
|
TypeDereferenceOperatorDeclarationEntity,
|
@@ -295,7 +296,6 @@ import {
|
|
295
296
|
isTypeEntityWithMembers,
|
296
297
|
isTypeMemberEntity,
|
297
298
|
isUnaryOperator,
|
298
|
-
isVariantTypeDeclaration,
|
299
299
|
javaScriptIdentifierRegExp,
|
300
300
|
kebabCaseToCamelCase,
|
301
301
|
keywordKindByOperatorKind,
|
@@ -328,7 +328,7 @@ import {
|
|
328
328
|
withoutQuotes,
|
329
329
|
withoutTemplateQuotes,
|
330
330
|
yieldExecution
|
331
|
-
} from "../chunk-
|
331
|
+
} from "../chunk-X7TMUZ4C.js";
|
332
332
|
export {
|
333
333
|
AccessKind,
|
334
334
|
AccessedMethodValueParameter,
|
@@ -547,6 +547,7 @@ export {
|
|
547
547
|
TreeQuery,
|
548
548
|
TryStatementClausesInfo,
|
549
549
|
TsInteropInputs,
|
550
|
+
TypeAssignabilityFlags,
|
550
551
|
TypeBodySemanticContext,
|
551
552
|
TypeConstructorDeclarationEntity,
|
552
553
|
TypeDereferenceOperatorDeclarationEntity,
|
@@ -623,7 +624,6 @@ export {
|
|
623
624
|
isTypeEntityWithMembers,
|
624
625
|
isTypeMemberEntity,
|
625
626
|
isUnaryOperator,
|
626
|
-
isVariantTypeDeclaration,
|
627
627
|
javaScriptIdentifierRegExp,
|
628
628
|
kebabCaseToCamelCase,
|
629
629
|
keywordKindByOperatorKind,
|
package/build/api/ApiNodeJS.js
CHANGED
@@ -6,9 +6,9 @@ import {
|
|
6
6
|
PhysicalFileSystem,
|
7
7
|
PhysicalTypeScriptLibrariesProvider,
|
8
8
|
PrintingDiagnosticAcceptor
|
9
|
-
} from "../chunk-
|
10
|
-
import "../chunk-
|
11
|
-
import "../chunk-
|
9
|
+
} from "../chunk-XMV7LOUY.js";
|
10
|
+
import "../chunk-5F65ZJE3.js";
|
11
|
+
import "../chunk-X7TMUZ4C.js";
|
12
12
|
export {
|
13
13
|
CommandLineCompiler,
|
14
14
|
FileSystemUri,
|