@artel/artc 0.6.25224 → 0.6.25225
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 +81 -79
- package/build/api/ApiNodeJS.js +3 -3
- package/build/api/ApiServices.js +995 -1001
- package/build/{chunk-24QZJOMF.js → chunk-TFTCV5R5.js} +5434 -5343
- package/build/{chunk-62KHK23H.js → chunk-UB6LHKS5.js} +3 -3
- package/build/{chunk-Y6DODJCG.js → chunk-Z6TZA6SN.js} +3 -3
- package/build/types/analysis/AccessedFunction.d.ts +53 -0
- package/build/types/analysis/AnalyzedTranslationPackage.d.ts +15 -15
- package/build/types/analysis/Analyzer.d.ts +133 -124
- package/build/types/analysis/CallExpressionMeaning.d.ts +10 -10
- package/build/types/analysis/DiagnosticCollector.d.ts +16 -16
- package/build/types/analysis/EntityLocalizationHelper.d.ts +6 -6
- package/build/types/analysis/IdentifierExpressionMeaning.d.ts +10 -10
- package/build/types/analysis/LocalizationContext.d.ts +2 -2
- package/build/types/analysis/{PropertyAccessExpressionMeaning.d.ts → MemberAccessExpressionMeaning.d.ts} +20 -20
- package/build/types/analysis/NodeTypeUtils.d.ts +13 -13
- package/build/types/analysis/OperationOverloadResolver.d.ts +1 -1
- package/build/types/analysis/Scope.d.ts +15 -15
- package/build/types/analysis/SemanticContext.d.ts +29 -29
- package/build/types/analysis/SemanticContextBuilder.d.ts +22 -22
- package/build/types/analysis/SourceFileMembers.d.ts +2 -2
- package/build/types/analysis/StatementBlockScopeBuilder.d.ts +12 -12
- package/build/types/analysis/{SubstitutedMethod.d.ts → SubstitutedFunction.d.ts} +14 -14
- package/build/types/analysis/TagMeaning.d.ts +19 -19
- package/build/types/analysis/Tags.d.ts +6 -6
- package/build/types/analysis/Utils.d.ts +3 -3
- package/build/types/analysis/WellKnownDeclarations.d.ts +4 -4
- package/build/types/analysis/control-flow/NarrowableExpression.d.ts +1 -1
- package/build/types/api/Api.d.ts +3 -3
- package/build/types/diagnostic/DiagnosticCode.d.ts +130 -131
- package/build/types/emitter/EmitPhaseName.d.ts +8 -8
- package/build/types/emitter/Emitter.d.ts +4 -4
- package/build/types/emitter/EmitterContext.d.ts +2 -2
- package/build/types/emitter/Entities.d.ts +26 -25
- package/build/types/emitter/EntityMap.d.ts +8 -8
- package/build/types/emitter/IrBuilder.d.ts +18 -18
- package/build/types/emitter/IrToJs.d.ts +9 -9
- package/build/types/emitter/Transformer.d.ts +37 -37
- package/build/types/emitter/ir/AccessedEntities.d.ts +5 -5
- package/build/types/emitter/ir/ComputedAccess.d.ts +5 -5
- package/build/types/emitter/ir/EmitOptions.d.ts +41 -27
- package/build/types/emitter/ir/Nodes.d.ts +140 -139
- package/build/types/emitter/ir/types.d.ts +8 -8
- package/build/types/entities/ConstructorEntity.d.ts +9 -9
- package/build/types/entities/DereferenceOperatorEntity.d.ts +4 -4
- package/build/types/entities/DestructorEntity.d.ts +4 -4
- package/build/types/entities/{MethodEntity.d.ts → FunctionEntity.d.ts} +36 -36
- package/build/types/entities/{MethodTypeEntity.d.ts → FunctionTypeEntity.d.ts} +23 -23
- package/build/types/entities/GetterEntity.d.ts +9 -9
- package/build/types/entities/IndexerEntity.d.ts +4 -4
- package/build/types/entities/SetterEntity.d.ts +9 -9
- package/build/types/entities/TypeEntity.d.ts +3 -3
- package/build/types/entities/TypeEntityMembers.d.ts +3 -3
- package/build/types/entities/TypeParameterEntity.d.ts +2 -2
- package/build/types/entities/VariableEntity.d.ts +32 -32
- package/build/types/entities/index.d.ts +14 -14
- package/build/types/services/CompletionService.d.ts +8 -8
- package/build/types/services/DisplayService.d.ts +62 -62
- package/build/types/services/HoverService.d.ts +1 -1
- package/build/types/services/NodeSemanticInfo.d.ts +17 -17
- package/build/types/services/SemanticTokensService.d.ts +6 -6
- package/build/types/services/SourceFileItemsService.d.ts +11 -11
- package/build/types/services/TypeDefinitionService.d.ts +2 -2
- package/build/types/services/signature-help/SignatureWithValueParameters.d.ts +10 -10
- package/build/types/services/signature-help/TypeParameterSignatureHelpProvider.d.ts +1 -1
- package/build/types/services/source-generation/EntityToSyntax.d.ts +9 -9
- package/build/types/tree/NodeKind.d.ts +146 -148
- package/build/types/tree/green/Nodes.d.ts +119 -139
- package/build/types/tree/green/SyntaxFactory.d.ts +19 -19
- package/build/types/tree/green/SyntaxToCode.d.ts +20 -22
- package/build/types/tree/red/Nodes.d.ts +165 -189
- package/build/types/ts-interop/Entities.d.ts +28 -28
- package/build/types/ts-interop/TsInteropContext.d.ts +1 -1
- package/build/types/ts-interop/TsPackageMembersCreator.d.ts +1 -1
- package/build/types/ts-interop/TsTypeMembersCreator.d.ts +1 -1
- package/build/types/types/{MethodType.d.ts → FunctionType.d.ts} +6 -6
- package/build/types/types/StandardTypes.d.ts +2 -2
- package/build/types/types/Type.d.ts +2 -2
- package/build/types/types/TypeFactory.d.ts +6 -7
- package/build/types/types/TypeMembers.d.ts +8 -8
- package/build/types/types/index.d.ts +1 -1
- package/package.json +1 -1
- package/build/types/analysis/AccessedMethod.d.ts +0 -53
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-UB6LHKS5.js";
|
5
|
+
import "./chunk-Z6TZA6SN.js";
|
6
6
|
import {
|
7
7
|
__async
|
8
|
-
} from "./chunk-
|
8
|
+
} from "./chunk-TFTCV5R5.js";
|
9
9
|
|
10
10
|
// source/Cli.ts
|
11
11
|
function main() {
|
package/build/api/Api.js
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
import {
|
2
2
|
Compiler
|
3
|
-
} from "../chunk-
|
3
|
+
} from "../chunk-Z6TZA6SN.js";
|
4
4
|
import {
|
5
5
|
AccessKind,
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
6
|
+
AccessedFunctionValueParameter,
|
7
|
+
AccessedFunction_entity,
|
8
|
+
AccessedFunction_substitutedFunction,
|
9
|
+
AccessedFunction_typeMember,
|
10
10
|
AccumulatingDiagnosticAcceptor,
|
11
11
|
AliasedPackageImportEntity,
|
12
12
|
AliasedType,
|
@@ -14,7 +14,7 @@ import {
|
|
14
14
|
AnalyzedPackageImports,
|
15
15
|
AnalyzedTranslationPackage,
|
16
16
|
Analyzer,
|
17
|
-
|
17
|
+
AnonymousFunctionTypeDeclarationEntity,
|
18
18
|
AnonymousStructuredTypeDeclarationEntity,
|
19
19
|
AnonymousVariantTypeDeclarationEntity,
|
20
20
|
ArtelSourceAndConfigurationFileExtensionSet,
|
@@ -33,12 +33,13 @@ import {
|
|
33
33
|
CompilationKind,
|
34
34
|
CompilationLoadResult,
|
35
35
|
CompilationLoader,
|
36
|
+
ComputedFieldDeclarationEntity,
|
36
37
|
ComputedPackageVariableDeclarationEntity,
|
37
|
-
ComputedTypeVariableDeclarationEntity,
|
38
38
|
ConfigurationConverter,
|
39
39
|
ConfigurationDirectoryNameSet,
|
40
40
|
ConfigurationDirectoryNamesByLocale,
|
41
41
|
ConfigurationFileParser,
|
42
|
+
ConstructorDeclarationEntity,
|
42
43
|
ConstructorParameterInitializingFieldInfo,
|
43
44
|
ConstructorSemanticContext,
|
44
45
|
Debug,
|
@@ -52,6 +53,10 @@ import {
|
|
52
53
|
DefaultTsLibDeclarationsFileName,
|
53
54
|
DefinitionKind,
|
54
55
|
Delayed,
|
56
|
+
DereferenceOperatorDeclarationEntity,
|
57
|
+
DereferencedVariableGetterDeclarationEntity,
|
58
|
+
DereferencedVariableSetterDeclarationEntity,
|
59
|
+
DestructorDeclarationEntity,
|
55
60
|
DestructorSemanticContext,
|
56
61
|
Diagnostic,
|
57
62
|
DiagnosticCode,
|
@@ -75,36 +80,48 @@ import {
|
|
75
80
|
EntityOrPackageNameTreeNode_node,
|
76
81
|
EnumerationVariableDeclarationEntity,
|
77
82
|
ErrorVariableDeclarationEntity,
|
78
|
-
|
83
|
+
ExpressionDenotesFunctionCheckResult,
|
79
84
|
ExpressionDenotesOperatorCheckResult,
|
85
|
+
FieldDeclarationEntity,
|
86
|
+
FieldGetterDeclarationEntity,
|
87
|
+
FieldSetterDeclarationEntity,
|
88
|
+
FieldWithInitializerSemanticContext,
|
80
89
|
FileSystemTree_exports,
|
81
90
|
ForStatementSemanticContext,
|
82
91
|
FoundAnonymousDeclaration,
|
83
92
|
FoundNamedDeclaration,
|
84
93
|
FunctionBlockSemanticContext,
|
94
|
+
FunctionLiteralParameterDeclarationEntity,
|
95
|
+
FunctionLiteralSemanticContext,
|
96
|
+
FunctionTypeParameterSemanticContext,
|
97
|
+
FunctionValueParameterSemanticContext,
|
85
98
|
GeneratedSourceFileScheme,
|
86
99
|
GenericCancellationToken,
|
87
100
|
GetMultipleTranslationTargetsResult,
|
88
101
|
GetSingleTranslationTargetResult,
|
89
102
|
GetterSemanticContext,
|
90
|
-
|
103
|
+
ImplicitFunctionBlockParameterSpecialVariableEntityInfo,
|
91
104
|
ImportEmitKind,
|
92
105
|
ImportedPackage,
|
93
106
|
ImportedPackageNameTree,
|
94
107
|
InMemoryPackageScheme,
|
108
|
+
IndexParameterDeclarationEntity,
|
109
|
+
IndexedElementGetterDeclarationEntity,
|
110
|
+
IndexedElementSetterDeclarationEntity,
|
111
|
+
IndexerDeclarationEntity,
|
95
112
|
IndexerSemanticContext,
|
96
113
|
InterfacePackageEntityInfo,
|
97
114
|
Interner,
|
98
115
|
IntrinsicConstructorEntity,
|
116
|
+
IntrinsicFieldEntity,
|
99
117
|
IntrinsicGetterEntity,
|
100
118
|
IntrinsicLocalVariableEntity,
|
101
|
-
|
119
|
+
IntrinsicMethodEntity,
|
120
|
+
IntrinsicPackageFunctionEntity,
|
102
121
|
IntrinsicPackageVariableEntity,
|
103
122
|
IntrinsicParameterVariableEntity,
|
104
123
|
IntrinsicSetterEntity,
|
105
|
-
IntrinsicTypeMethodEntity,
|
106
124
|
IntrinsicTypeParameterEntity,
|
107
|
-
IntrinsicTypeVariableEntity,
|
108
125
|
JavaScriptImplementationConfig,
|
109
126
|
JavaScriptInterfacePackageImplementationConfig,
|
110
127
|
JavaScriptModuleFormat,
|
@@ -112,7 +129,7 @@ import {
|
|
112
129
|
JsonConfigurationFileNameSet,
|
113
130
|
JsonConfigurationFileNamesByLocale,
|
114
131
|
KeywordPart,
|
115
|
-
|
132
|
+
LastSemanticContextOfFunction,
|
116
133
|
LastSemanticContextOfType,
|
117
134
|
Lazy,
|
118
135
|
LinkedMultiPlatformPackage,
|
@@ -130,13 +147,10 @@ import {
|
|
130
147
|
Lookup,
|
131
148
|
MatchResult,
|
132
149
|
MatchResultValueParameter,
|
133
|
-
|
134
|
-
MethodLiteralSemanticContext,
|
135
|
-
MethodTypeParameterSemanticContext,
|
136
|
-
MethodValueParameterSemanticContext,
|
150
|
+
MethodDeclarationEntity,
|
137
151
|
Name,
|
138
152
|
NameFlags,
|
139
|
-
|
153
|
+
NestedFunctionDeclarationEntity,
|
140
154
|
NodeModulesDirectoryName,
|
141
155
|
NodeTypeUtils,
|
142
156
|
OperatorDeclarationEntity,
|
@@ -151,14 +165,14 @@ import {
|
|
151
165
|
PackageDialect,
|
152
166
|
PackageEntryPointSemanticContext,
|
153
167
|
PackageFromDtsConfig,
|
168
|
+
PackageFunctionDeclarationEntity,
|
169
|
+
PackageFunctionTypeDeclarationEntity,
|
154
170
|
PackageGroupConfiguration,
|
155
171
|
PackageImportInfo,
|
156
172
|
PackageImportLocaleConfig,
|
157
173
|
PackageLocale,
|
158
174
|
PackageMemberLookup,
|
159
|
-
|
160
|
-
PackageMethodTypeDeclarationEntity,
|
161
|
-
PackageName,
|
175
|
+
PackageName2 as PackageName,
|
162
176
|
PackageStructuredTypeDeclarationEntity,
|
163
177
|
PackageVariableDeclarationEntity,
|
164
178
|
PackageVariableGetterDeclarationEntity,
|
@@ -196,15 +210,15 @@ import {
|
|
196
210
|
SourceTypeParameterEntity,
|
197
211
|
StatementBlockSemanticContext,
|
198
212
|
SubprogramInfo,
|
199
|
-
|
200
|
-
|
213
|
+
SubstitutedFunction_entity,
|
214
|
+
SubstitutedFunction_typeMember,
|
201
215
|
SubstitutionApplicationMode,
|
202
216
|
SyntacticAccessKind,
|
203
217
|
TagArgument_boolean,
|
204
218
|
TagArgument_invalid,
|
205
219
|
TagArgument_numeric,
|
206
220
|
TagArgument_string,
|
207
|
-
|
221
|
+
TagFunction,
|
208
222
|
TagType,
|
209
223
|
TargetPlatformConfig,
|
210
224
|
TargetTypeHint,
|
@@ -227,31 +241,18 @@ import {
|
|
227
241
|
TsInteropInputs,
|
228
242
|
TypeAssignabilityFlags,
|
229
243
|
TypeBodySemanticContext,
|
230
|
-
TypeConstructorDeclarationEntity,
|
231
|
-
TypeDereferenceOperatorDeclarationEntity,
|
232
|
-
TypeDereferencedVariableGetterDeclarationEntity,
|
233
|
-
TypeDereferencedVariableSetterDeclarationEntity,
|
234
|
-
TypeDestructorDeclarationEntity,
|
235
244
|
TypeEntityKind,
|
236
245
|
TypeExtensionBodySemanticContext,
|
237
|
-
TypeIndexedGetterDeclarationEntity,
|
238
|
-
TypeIndexedSetterDeclarationEntity,
|
239
|
-
TypeIndexerDeclarationEntity,
|
240
|
-
TypeIndexerParameterDeclarationEntity,
|
241
246
|
TypeMemberEntityContainer,
|
242
247
|
TypeMemberLookup,
|
243
248
|
TypeMemberLookupOptions,
|
244
|
-
TypeMethodDeclarationEntity,
|
245
249
|
TypeOrTypeExtension,
|
246
250
|
TypeParameterConstraint,
|
247
251
|
TypeParametersOfTypeSemanticContext,
|
248
|
-
|
249
|
-
|
250
|
-
TypeVariableSetterDeclarationEntity,
|
251
|
-
TypeVariableWithInitializerSemanticContext,
|
252
|
-
UnfinishedIntrinsicAnonymousMethodTypeEntity,
|
252
|
+
TypeUtils,
|
253
|
+
UnfinishedIntrinsicAnonymousFunctionTypeEntity,
|
253
254
|
UnfinishedIntrinsicAnonymousStructuredTypeEntity,
|
254
|
-
|
255
|
+
UnfinishedIntrinsicPackageFunctionTypeEntity,
|
255
256
|
UnfinishedIntrinsicPackageStructuredTypeEntity,
|
256
257
|
Uri,
|
257
258
|
UrisRelativityKind,
|
@@ -334,13 +335,13 @@ import {
|
|
334
335
|
withoutQuotes,
|
335
336
|
withoutTemplateQuotes,
|
336
337
|
yieldExecution
|
337
|
-
} from "../chunk-
|
338
|
+
} from "../chunk-TFTCV5R5.js";
|
338
339
|
export {
|
339
340
|
AccessKind,
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
341
|
+
AccessedFunctionValueParameter,
|
342
|
+
AccessedFunction_entity,
|
343
|
+
AccessedFunction_substitutedFunction,
|
344
|
+
AccessedFunction_typeMember,
|
344
345
|
AccumulatingDiagnosticAcceptor,
|
345
346
|
AliasedPackageImportEntity,
|
346
347
|
AliasedType,
|
@@ -348,7 +349,7 @@ export {
|
|
348
349
|
AnalyzedPackageImports,
|
349
350
|
AnalyzedTranslationPackage,
|
350
351
|
Analyzer,
|
351
|
-
|
352
|
+
AnonymousFunctionTypeDeclarationEntity,
|
352
353
|
AnonymousStructuredTypeDeclarationEntity,
|
353
354
|
AnonymousVariantTypeDeclarationEntity,
|
354
355
|
ArtelSourceAndConfigurationFileExtensionSet,
|
@@ -368,12 +369,13 @@ export {
|
|
368
369
|
CompilationLoadResult,
|
369
370
|
CompilationLoader,
|
370
371
|
Compiler,
|
372
|
+
ComputedFieldDeclarationEntity,
|
371
373
|
ComputedPackageVariableDeclarationEntity,
|
372
|
-
ComputedTypeVariableDeclarationEntity,
|
373
374
|
ConfigurationConverter,
|
374
375
|
ConfigurationDirectoryNameSet,
|
375
376
|
ConfigurationDirectoryNamesByLocale,
|
376
377
|
ConfigurationFileParser,
|
378
|
+
ConstructorDeclarationEntity,
|
377
379
|
ConstructorParameterInitializingFieldInfo,
|
378
380
|
ConstructorSemanticContext,
|
379
381
|
Debug,
|
@@ -387,6 +389,10 @@ export {
|
|
387
389
|
DefaultTsLibDeclarationsFileName,
|
388
390
|
DefinitionKind,
|
389
391
|
Delayed,
|
392
|
+
DereferenceOperatorDeclarationEntity,
|
393
|
+
DereferencedVariableGetterDeclarationEntity,
|
394
|
+
DereferencedVariableSetterDeclarationEntity,
|
395
|
+
DestructorDeclarationEntity,
|
390
396
|
DestructorSemanticContext,
|
391
397
|
Diagnostic,
|
392
398
|
DiagnosticCode,
|
@@ -410,35 +416,47 @@ export {
|
|
410
416
|
EntityOrPackageNameTreeNode_node,
|
411
417
|
EnumerationVariableDeclarationEntity,
|
412
418
|
ErrorVariableDeclarationEntity,
|
413
|
-
|
419
|
+
ExpressionDenotesFunctionCheckResult,
|
414
420
|
ExpressionDenotesOperatorCheckResult,
|
421
|
+
FieldDeclarationEntity,
|
422
|
+
FieldGetterDeclarationEntity,
|
423
|
+
FieldSetterDeclarationEntity,
|
424
|
+
FieldWithInitializerSemanticContext,
|
415
425
|
ForStatementSemanticContext,
|
416
426
|
FoundAnonymousDeclaration,
|
417
427
|
FoundNamedDeclaration,
|
418
428
|
FunctionBlockSemanticContext,
|
429
|
+
FunctionLiteralParameterDeclarationEntity,
|
430
|
+
FunctionLiteralSemanticContext,
|
431
|
+
FunctionTypeParameterSemanticContext,
|
432
|
+
FunctionValueParameterSemanticContext,
|
419
433
|
GeneratedSourceFileScheme,
|
420
434
|
GenericCancellationToken,
|
421
435
|
GetMultipleTranslationTargetsResult,
|
422
436
|
GetSingleTranslationTargetResult,
|
423
437
|
GetterSemanticContext,
|
424
|
-
|
438
|
+
ImplicitFunctionBlockParameterSpecialVariableEntityInfo,
|
425
439
|
ImportEmitKind,
|
426
440
|
ImportedPackage,
|
427
441
|
ImportedPackageNameTree,
|
428
442
|
InMemoryPackageScheme,
|
443
|
+
IndexParameterDeclarationEntity,
|
444
|
+
IndexedElementGetterDeclarationEntity,
|
445
|
+
IndexedElementSetterDeclarationEntity,
|
446
|
+
IndexerDeclarationEntity,
|
429
447
|
IndexerSemanticContext,
|
430
448
|
InterfacePackageEntityInfo,
|
431
449
|
Interner,
|
432
450
|
IntrinsicConstructorEntity,
|
451
|
+
IntrinsicFieldEntity,
|
433
452
|
IntrinsicGetterEntity,
|
434
453
|
IntrinsicLocalVariableEntity,
|
435
|
-
|
454
|
+
IntrinsicMethodEntity,
|
455
|
+
IntrinsicPackageFunctionEntity,
|
436
456
|
IntrinsicPackageVariableEntity,
|
437
457
|
IntrinsicParameterVariableEntity,
|
438
458
|
IntrinsicSetterEntity,
|
439
|
-
IntrinsicTypeMethodEntity,
|
440
459
|
IntrinsicTypeParameterEntity,
|
441
|
-
IntrinsicTypeVariableEntity,
|
442
460
|
JavaScriptImplementationConfig,
|
443
461
|
JavaScriptInterfacePackageImplementationConfig,
|
444
462
|
JavaScriptModuleFormat,
|
@@ -446,7 +464,7 @@ export {
|
|
446
464
|
JsonConfigurationFileNameSet,
|
447
465
|
JsonConfigurationFileNamesByLocale,
|
448
466
|
KeywordPart,
|
449
|
-
|
467
|
+
LastSemanticContextOfFunction,
|
450
468
|
LastSemanticContextOfType,
|
451
469
|
Lazy,
|
452
470
|
LinkedMultiPlatformPackage,
|
@@ -464,13 +482,10 @@ export {
|
|
464
482
|
Lookup,
|
465
483
|
MatchResult,
|
466
484
|
MatchResultValueParameter,
|
467
|
-
|
468
|
-
MethodLiteralSemanticContext,
|
469
|
-
MethodTypeParameterSemanticContext,
|
470
|
-
MethodValueParameterSemanticContext,
|
485
|
+
MethodDeclarationEntity,
|
471
486
|
Name,
|
472
487
|
NameFlags,
|
473
|
-
|
488
|
+
NestedFunctionDeclarationEntity,
|
474
489
|
NodeModulesDirectoryName,
|
475
490
|
NodeTypeUtils,
|
476
491
|
OperatorDeclarationEntity,
|
@@ -482,13 +497,13 @@ export {
|
|
482
497
|
PackageDialect,
|
483
498
|
PackageEntryPointSemanticContext,
|
484
499
|
PackageFromDtsConfig,
|
500
|
+
PackageFunctionDeclarationEntity,
|
501
|
+
PackageFunctionTypeDeclarationEntity,
|
485
502
|
PackageGroupConfiguration,
|
486
503
|
PackageImportInfo,
|
487
504
|
PackageImportLocaleConfig,
|
488
505
|
PackageLocale,
|
489
506
|
PackageMemberLookup,
|
490
|
-
PackageMethodDeclarationEntity,
|
491
|
-
PackageMethodTypeDeclarationEntity,
|
492
507
|
PackageName,
|
493
508
|
PackageStructuredTypeDeclarationEntity,
|
494
509
|
PackageVariableDeclarationEntity,
|
@@ -528,15 +543,15 @@ export {
|
|
528
543
|
SourceTypeParameterEntity,
|
529
544
|
StatementBlockSemanticContext,
|
530
545
|
SubprogramInfo,
|
531
|
-
|
532
|
-
|
546
|
+
SubstitutedFunction_entity,
|
547
|
+
SubstitutedFunction_typeMember,
|
533
548
|
SubstitutionApplicationMode,
|
534
549
|
SyntacticAccessKind,
|
535
550
|
TagArgument_boolean,
|
536
551
|
TagArgument_invalid,
|
537
552
|
TagArgument_numeric,
|
538
553
|
TagArgument_string,
|
539
|
-
|
554
|
+
TagFunction,
|
540
555
|
TagType,
|
541
556
|
TargetPlatformConfig,
|
542
557
|
TargetTypeHint,
|
@@ -558,31 +573,18 @@ export {
|
|
558
573
|
TsInteropInputs,
|
559
574
|
TypeAssignabilityFlags,
|
560
575
|
TypeBodySemanticContext,
|
561
|
-
TypeConstructorDeclarationEntity,
|
562
|
-
TypeDereferenceOperatorDeclarationEntity,
|
563
|
-
TypeDereferencedVariableGetterDeclarationEntity,
|
564
|
-
TypeDereferencedVariableSetterDeclarationEntity,
|
565
|
-
TypeDestructorDeclarationEntity,
|
566
576
|
TypeEntityKind,
|
567
577
|
TypeExtensionBodySemanticContext,
|
568
|
-
TypeIndexedGetterDeclarationEntity,
|
569
|
-
TypeIndexedSetterDeclarationEntity,
|
570
|
-
TypeIndexerDeclarationEntity,
|
571
|
-
TypeIndexerParameterDeclarationEntity,
|
572
578
|
TypeMemberEntityContainer,
|
573
579
|
TypeMemberLookup,
|
574
580
|
TypeMemberLookupOptions,
|
575
|
-
TypeMethodDeclarationEntity,
|
576
581
|
TypeOrTypeExtension,
|
577
582
|
TypeParameterConstraint,
|
578
583
|
TypeParametersOfTypeSemanticContext,
|
579
|
-
|
580
|
-
|
581
|
-
TypeVariableSetterDeclarationEntity,
|
582
|
-
TypeVariableWithInitializerSemanticContext,
|
583
|
-
UnfinishedIntrinsicAnonymousMethodTypeEntity,
|
584
|
+
TypeUtils,
|
585
|
+
UnfinishedIntrinsicAnonymousFunctionTypeEntity,
|
584
586
|
UnfinishedIntrinsicAnonymousStructuredTypeEntity,
|
585
|
-
|
587
|
+
UnfinishedIntrinsicPackageFunctionTypeEntity,
|
586
588
|
UnfinishedIntrinsicPackageStructuredTypeEntity,
|
587
589
|
Uri,
|
588
590
|
UrisRelativityKind,
|
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-UB6LHKS5.js";
|
10
|
+
import "../chunk-Z6TZA6SN.js";
|
11
|
+
import "../chunk-TFTCV5R5.js";
|
12
12
|
export {
|
13
13
|
CommandLineCompiler,
|
14
14
|
FileSystemUri,
|