@artel/artc 0.6.26025 → 0.6.26026
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 +48 -28
- package/build/api/ApiNodeJS.js +3 -3
- package/build/api/ApiServices.js +254 -137
- package/build/{chunk-CIRH34IO.js → chunk-35ZDOLQ3.js} +30 -7
- package/build/{chunk-7QPDALAB.js → chunk-TWDMG7M3.js} +1 -1
- package/build/{chunk-OTHSFQXT.js → chunk-UY7U6EAT.js} +9918 -7657
- package/build/types/analysis/AccessedFunction.d.ts +3 -0
- package/build/types/analysis/AccessibilityCheck.d.ts +3 -4
- package/build/types/analysis/Analyzer.d.ts +24 -15
- package/build/types/analysis/BaseMemberConflictsValidator.d.ts +1 -1
- package/build/types/analysis/ComputedAccess.d.ts +13 -0
- package/build/types/analysis/OverrideChecker.d.ts +17 -0
- package/build/types/analysis/SpecialNameKey.d.ts +4 -0
- package/build/types/analysis/TypeMemberImplementationChecker.d.ts +7 -1
- package/build/types/analysis/a/Analyzer.d.ts +24 -25
- package/build/types/analysis/a/DereferenceExpressionMeaning.d.ts +6 -4
- package/build/types/analysis/a/FindModifier.d.ts +1 -0
- package/build/types/analysis/a/IdentifierExpressionMeaning.d.ts +16 -7
- package/build/types/analysis/a/IndexedAccessExpressionMeaning.d.ts +7 -5
- package/build/types/analysis/a/MemberAccessExpressionMeaning.d.ts +14 -9
- package/build/types/analysis/a/ModifierValidator.d.ts +3 -10
- package/build/types/analysis/a/ReservedNameDictionary.d.ts +7 -1
- package/build/types/analysis/a/SourceFileAnalyzer.d.ts +1 -1
- package/build/types/analysis/a/semantic-context/Declarations.d.ts +3 -3
- package/build/types/analysis/a/semantic-context/SemanticContextBase.d.ts +4 -4
- package/build/types/analysis/a/semantic-context/SpecialLocalDeclarationsBuilder.d.ts +2 -2
- package/build/types/analysis/a/semantic-context/SubprogramBodyAndParametersSemanticContext.d.ts +0 -4
- package/build/types/common/ArrayUtils.d.ts +1 -0
- package/build/types/diagnostic/DiagnosticCode.d.ts +145 -134
- package/build/types/diagnostic/DiagnosticFormatter.d.ts +3 -2
- package/build/types/emitter/EmitPhaseName.d.ts +3 -2
- package/build/types/emitter/Entities.d.ts +2 -0
- package/build/types/emitter/EntityMap.d.ts +0 -4
- package/build/types/emitter/IrBuilderA.d.ts +3 -3
- package/build/types/emitter/IrFactory.d.ts +11 -10
- package/build/types/emitter/IrToJs.d.ts +0 -1
- package/build/types/emitter/Transformer.d.ts +2 -3
- package/build/types/emitter/ir/EmitOptions.d.ts +4 -40
- package/build/types/emitter/ir/Nodes.d.ts +16 -34
- package/build/types/emitter/ir/VariableAccess.d.ts +18 -0
- package/build/types/emitter/ir/index.d.ts +1 -0
- package/build/types/emitter/ir/types.d.ts +2 -2
- package/build/types/entities/AccessorEntity.d.ts +8 -0
- package/build/types/entities/ComputedEntity.d.ts +12 -0
- package/build/types/entities/Entity.d.ts +1 -6
- package/build/types/entities/EntityKind.d.ts +6 -8
- package/build/types/entities/EntityLocalizationContext.d.ts +2 -5
- package/build/types/entities/TypeEntity.d.ts +6 -1
- package/build/types/entities/TypeEntityMembers.d.ts +5 -0
- package/build/types/entities/TypeMemberEntity.d.ts +12 -5
- package/build/types/entities/TypeMemberKindFlags.d.ts +4 -3
- package/build/types/entities/index.d.ts +2 -0
- package/build/types/entities/interfaces/{ConstructorEntity.d.ts → BaseConstructorEntity.d.ts} +5 -5
- package/build/types/entities/interfaces/{DestructorEntity.d.ts → BaseDestructorEntity.d.ts} +6 -6
- package/build/types/entities/interfaces/BaseOperatorEntity.d.ts +15 -0
- package/build/types/entities/interfaces/{OrdinaryMethodEntity.d.ts → BaseOrdinaryMethodEntity.d.ts} +6 -3
- package/build/types/entities/interfaces/BaseOrdinaryPackageFunctionEntity.d.ts +36 -0
- package/build/types/entities/interfaces/BasePackageMemberAccessorEntity.d.ts +36 -0
- package/build/types/entities/interfaces/BaseTypeMemberAccessorEntity.d.ts +19 -0
- package/build/types/entities/interfaces/DereferenceOperatorEntity.d.ts +34 -6
- package/build/types/entities/interfaces/FieldEntityWithImplicitAccessors.d.ts +15 -0
- package/build/types/entities/interfaces/FunctionEntity.d.ts +75 -8
- package/build/types/entities/interfaces/IndexerEntity.d.ts +35 -6
- package/build/types/entities/interfaces/VariableEntity.d.ts +45 -12
- package/build/types/entities/interfaces/a/ConstructorEntityA.d.ts +2 -3
- package/build/types/entities/interfaces/a/DestructorEntityA.d.ts +2 -4
- package/build/types/entities/interfaces/index.d.ts +8 -6
- package/build/types/entities/intrinsic/IntrinsicConstructorEntity.d.ts +3 -1
- package/build/types/entities/intrinsic/IntrinsicFunctionEntity.d.ts +7 -14
- package/build/types/entities/intrinsic/IntrinsicTypeMemberAccessorEntity.d.ts +11 -0
- package/build/types/entities/intrinsic/IntrinsicVariableEntity.d.ts +20 -16
- package/build/types/entities/intrinsic/index.d.ts +1 -2
- package/build/types/entities/source/a/SourceConstructorEntity.d.ts +2 -1
- package/build/types/entities/source/a/SourceDereferenceOperatorEntity.d.ts +6 -9
- package/build/types/entities/source/a/SourceDestructorEntity.d.ts +2 -1
- package/build/types/entities/source/a/SourceFunctionEntity.d.ts +9 -17
- package/build/types/entities/source/a/SourceGetterEntity.d.ts +62 -24
- package/build/types/entities/source/a/SourceIndexerEntity.d.ts +6 -9
- package/build/types/entities/source/a/SourceSetterEntity.d.ts +68 -25
- package/build/types/entities/source/a/SourceVariableEntity.d.ts +35 -42
- package/build/types/entities/translated/TranslatedDereferenceOperatorEntity.d.ts +12 -6
- package/build/types/entities/translated/TranslatedFunctionEntity.d.ts +27 -2
- package/build/types/entities/translated/TranslatedIndexerEntity.d.ts +14 -6
- package/build/types/entities/translated/TranslatedPackageMemberAccessorEntity.d.ts +38 -0
- package/build/types/entities/translated/TranslatedParameterEntity.d.ts +34 -0
- package/build/types/entities/translated/TranslatedTypeMemberAccessorEntity.d.ts +45 -0
- package/build/types/entities/translated/TranslatedVariableEntity.d.ts +19 -39
- package/build/types/entities/translated/index.d.ts +3 -2
- package/build/types/entities/translated/source/a/SourceTranslatedIndexerEntity.d.ts +2 -1
- package/build/types/executor/NodeCompiler.d.ts +1 -1
- package/build/types/services/a/DisplayService.d.ts +1 -3
- package/build/types/services/a/NodeSemanticInfo.d.ts +1 -1
- package/build/types/services/a/references/DefinitionInfoFinder.d.ts +1 -1
- package/build/types/services/common/display/BaseDisplayService.d.ts +0 -2
- package/build/types/services/common/display/DisplayService.d.ts +1 -3
- package/build/types/services/common/display/Types.d.ts +16 -7
- package/build/types/services/common/references/ReferencesSearchUtils.d.ts +1 -1
- package/build/types/services/common/references/ReferencesService.d.ts +1 -0
- package/build/types/services/common/source-generation/EntityToSyntax.d.ts +3 -1
- package/build/types/tree/a/Nodes.d.ts +12 -4
- package/build/types/tree/a/SyntaxFactory.d.ts +4 -4
- package/build/types/ts-interop/Entities.d.ts +65 -46
- package/build/types/types/ComputedTypeMember.d.ts +3 -0
- package/build/types/types/StructuredType.d.ts +2 -1
- package/build/types/types/TypeMembers.d.ts +31 -8
- package/build/types/types/collections/TypeDictionary.d.ts +32 -0
- package/build/types/types/collections/TypeMemberDictionary.d.ts +27 -0
- package/build/types/types/collections/TypeMemberSet.d.ts +24 -0
- package/build/types/types/collections/TypeSet.d.ts +29 -0
- package/build/types/types/index.d.ts +5 -0
- package/package.json +3 -2
- package/build/types/analysis/OverridableTypeMember.d.ts +0 -6
- package/build/types/entities/interfaces/GetterEntity.d.ts +0 -21
- package/build/types/entities/interfaces/OperatorEntity.d.ts +0 -12
- package/build/types/entities/interfaces/SetterEntity.d.ts +0 -19
- package/build/types/entities/intrinsic/IntrinsicGetterEntity.d.ts +0 -24
- package/build/types/entities/intrinsic/IntrinsicSetterEntity.d.ts +0 -21
- package/build/types/entities/translated/TranslatedGetterEntity.d.ts +0 -24
- package/build/types/entities/translated/TranslatedSetterEntity.d.ts +0 -21
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-35ZDOLQ3.js";
|
|
5
|
+
import "./chunk-TWDMG7M3.js";
|
|
6
6
|
import {
|
|
7
7
|
__async
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-UY7U6EAT.js";
|
|
9
9
|
|
|
10
10
|
// source/Cli.ts
|
|
11
11
|
function main() {
|
package/build/api/Api.js
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import {
|
|
2
2
|
Compiler
|
|
3
|
-
} from "../chunk-
|
|
3
|
+
} from "../chunk-TWDMG7M3.js";
|
|
4
4
|
import {
|
|
5
5
|
AccessKind,
|
|
6
6
|
AccessedFunction_entity,
|
|
7
7
|
AccessedFunction_substitutedFunction,
|
|
8
8
|
AccessedFunction_typeMember,
|
|
9
|
+
AccessorEntity,
|
|
10
|
+
AccessorKind,
|
|
9
11
|
AccumulatingDiagnosticAcceptor,
|
|
10
12
|
AliasedType,
|
|
11
13
|
Analyzer,
|
|
@@ -17,12 +19,23 @@ import {
|
|
|
17
19
|
ArtelVersion,
|
|
18
20
|
BackingSpecialVariableEntityInfo,
|
|
19
21
|
BaseAspectTypes,
|
|
22
|
+
BaseConstructorEntity,
|
|
23
|
+
BaseDereferenceOperatorEntity,
|
|
24
|
+
BaseDestructorEntity,
|
|
25
|
+
BaseFieldEntity,
|
|
26
|
+
BaseIndexerEntity,
|
|
20
27
|
BaseKeywordPart,
|
|
28
|
+
BaseMethodEntity,
|
|
21
29
|
BaseObjectType,
|
|
30
|
+
BaseOperatorEntity,
|
|
31
|
+
BaseOrdinaryMethodEntity,
|
|
32
|
+
BaseOrdinaryPackageFunctionEntity,
|
|
33
|
+
BasePackageMemberAccessorEntity,
|
|
22
34
|
BaseProgramPackage,
|
|
23
35
|
BaseSourceFile,
|
|
24
36
|
BaseTextTranslationPackage,
|
|
25
37
|
BaseTranslationPackage,
|
|
38
|
+
BaseTypeMemberAccessorEntity,
|
|
26
39
|
BoundTypeMemberLookup,
|
|
27
40
|
Cached,
|
|
28
41
|
CancelledError,
|
|
@@ -36,7 +49,6 @@ import {
|
|
|
36
49
|
ConfigurationDirectoryNameSet,
|
|
37
50
|
ConfigurationDirectoryNamesByLocale,
|
|
38
51
|
ConfigurationFileParser,
|
|
39
|
-
ConstructorEntity,
|
|
40
52
|
ConstructorParameterInitializingFieldInfo,
|
|
41
53
|
CycleFreeAliasedTypeResolutionResult,
|
|
42
54
|
CycleFreeBaseAspectTypesResolutionResult,
|
|
@@ -52,8 +64,6 @@ import {
|
|
|
52
64
|
DefaultNamesOfDirectoriesToIgnore,
|
|
53
65
|
DefaultTsLibDeclarationsFileName,
|
|
54
66
|
DefinitionKind,
|
|
55
|
-
DereferenceOperatorEntity,
|
|
56
|
-
DestructorEntity,
|
|
57
67
|
Diagnostic,
|
|
58
68
|
DiagnosticAcceptorWithArgumentFactory,
|
|
59
69
|
DiagnosticCode,
|
|
@@ -77,7 +87,7 @@ import {
|
|
|
77
87
|
EntityNaming_named,
|
|
78
88
|
ErrorHandlingStrategy,
|
|
79
89
|
ExpressionAnalysisOptions,
|
|
80
|
-
|
|
90
|
+
FieldEntityWithImplicitAccessors,
|
|
81
91
|
FileSystemTree_exports,
|
|
82
92
|
GeneratedSourceFileScheme,
|
|
83
93
|
GenericCancellationToken,
|
|
@@ -86,18 +96,15 @@ import {
|
|
|
86
96
|
ImportEmitKind,
|
|
87
97
|
ImportedPackageNameTree,
|
|
88
98
|
InMemoryPackageScheme,
|
|
89
|
-
IndexerEntity,
|
|
90
99
|
InterfacePackageEntityInfo,
|
|
91
100
|
Interner,
|
|
92
101
|
IntrinsicConstructorEntity,
|
|
93
102
|
IntrinsicFieldEntity,
|
|
94
|
-
IntrinsicGetterEntity,
|
|
95
103
|
IntrinsicLocalVariableEntity,
|
|
96
104
|
IntrinsicOrdinaryMethodEntity,
|
|
97
|
-
|
|
105
|
+
IntrinsicOrdinaryPackageFunctionEntity,
|
|
98
106
|
IntrinsicPackageVariableEntity,
|
|
99
107
|
IntrinsicParameterEntity,
|
|
100
|
-
IntrinsicSetterEntity,
|
|
101
108
|
IntrinsicTranslationDefinition,
|
|
102
109
|
IntrinsicTypeParameterEntity,
|
|
103
110
|
JavaScriptImplementationConfig,
|
|
@@ -119,27 +126,26 @@ import {
|
|
|
119
126
|
MatchResult,
|
|
120
127
|
MatchResultParameter,
|
|
121
128
|
MaybeLazy,
|
|
122
|
-
MethodEntity,
|
|
123
129
|
MethodKind,
|
|
124
130
|
MiddleKeywordPart,
|
|
125
131
|
Name,
|
|
126
132
|
NameFlags,
|
|
127
133
|
NodeModulesDirectoryName,
|
|
128
|
-
OperatorEntity,
|
|
129
134
|
OperatorKind,
|
|
130
135
|
Option,
|
|
131
|
-
OrdinaryMethodEntity,
|
|
132
136
|
OriginalAliasedType,
|
|
133
137
|
OriginalBaseAspectTypes,
|
|
134
138
|
OriginalBaseObjectType,
|
|
135
139
|
OriginalReductionSource,
|
|
136
140
|
OriginalTypeParameterConstraint,
|
|
141
|
+
OverriddenAndShadowedMembers,
|
|
137
142
|
PackageConfigurationEn_exports,
|
|
138
143
|
PackageConfigurationRu_exports,
|
|
139
144
|
PackageContent_exports,
|
|
140
145
|
PackageDialect,
|
|
141
146
|
PackageEntityMembers,
|
|
142
147
|
PackageFromDtsConfig,
|
|
148
|
+
PackageFunctionKind,
|
|
143
149
|
PackageGroupConfiguration,
|
|
144
150
|
PackageImportInfo,
|
|
145
151
|
PackageImportLocaleConfig,
|
|
@@ -216,6 +222,7 @@ import {
|
|
|
216
222
|
UnfinishedIntrinsicAnonymousFunctionTypeEntity,
|
|
217
223
|
UnfinishedIntrinsicAnonymousStructuredTypeEntity,
|
|
218
224
|
UnfinishedIntrinsicPackageStructuredTypeEntity,
|
|
225
|
+
UnfinishedIntrinsicTypeMemberAccessorEntity,
|
|
219
226
|
Uri,
|
|
220
227
|
UrisRelativityKind,
|
|
221
228
|
ValueSpecialVariableEntityInfo,
|
|
@@ -234,6 +241,7 @@ import {
|
|
|
234
241
|
entityToStringDecorator,
|
|
235
242
|
findModifier,
|
|
236
243
|
findObjectParameter,
|
|
244
|
+
findOwnModifier,
|
|
237
245
|
findTag,
|
|
238
246
|
formatString,
|
|
239
247
|
getFileExtension,
|
|
@@ -244,10 +252,10 @@ import {
|
|
|
244
252
|
getUserLocale,
|
|
245
253
|
ifTypeEntityIsFunctionTypeAliasThenFunctionType,
|
|
246
254
|
invalidJavaScriptIdentifierCharsRegExp,
|
|
247
|
-
isAccessorEntity,
|
|
248
255
|
isAnonymousTypeEntity,
|
|
249
256
|
isBinaryOperator,
|
|
250
|
-
|
|
257
|
+
isComputedEntity,
|
|
258
|
+
isComputedEntityNoCast,
|
|
251
259
|
isEntityWithParameters,
|
|
252
260
|
isEntityWithTypeParameters,
|
|
253
261
|
isJavaScriptIdentifier,
|
|
@@ -269,6 +277,8 @@ import {
|
|
|
269
277
|
isTypeMemberEntity,
|
|
270
278
|
isTypeWithMembersOrExtensionEntity,
|
|
271
279
|
isUnaryOperator,
|
|
280
|
+
isVariableEntityWithExplicitAccessors,
|
|
281
|
+
isVariableEntityWithImplicitAccessors,
|
|
272
282
|
javaScriptIdentifierRegExp,
|
|
273
283
|
kebabCaseToCamelCase,
|
|
274
284
|
keywordKindByOperatorKind,
|
|
@@ -297,12 +307,14 @@ import {
|
|
|
297
307
|
withoutQuotes,
|
|
298
308
|
withoutTemplateQuotes,
|
|
299
309
|
yieldTask
|
|
300
|
-
} from "../chunk-
|
|
310
|
+
} from "../chunk-UY7U6EAT.js";
|
|
301
311
|
export {
|
|
302
312
|
AccessKind,
|
|
303
313
|
AccessedFunction_entity,
|
|
304
314
|
AccessedFunction_substitutedFunction,
|
|
305
315
|
AccessedFunction_typeMember,
|
|
316
|
+
AccessorEntity,
|
|
317
|
+
AccessorKind,
|
|
306
318
|
AccumulatingDiagnosticAcceptor,
|
|
307
319
|
AliasedType,
|
|
308
320
|
Analyzer,
|
|
@@ -314,12 +326,23 @@ export {
|
|
|
314
326
|
ArtelVersion,
|
|
315
327
|
BackingSpecialVariableEntityInfo,
|
|
316
328
|
BaseAspectTypes,
|
|
329
|
+
BaseConstructorEntity,
|
|
330
|
+
BaseDereferenceOperatorEntity,
|
|
331
|
+
BaseDestructorEntity,
|
|
332
|
+
BaseFieldEntity,
|
|
333
|
+
BaseIndexerEntity,
|
|
317
334
|
BaseKeywordPart,
|
|
335
|
+
BaseMethodEntity,
|
|
318
336
|
BaseObjectType,
|
|
337
|
+
BaseOperatorEntity,
|
|
338
|
+
BaseOrdinaryMethodEntity,
|
|
339
|
+
BaseOrdinaryPackageFunctionEntity,
|
|
340
|
+
BasePackageMemberAccessorEntity,
|
|
319
341
|
BaseProgramPackage,
|
|
320
342
|
BaseSourceFile,
|
|
321
343
|
BaseTextTranslationPackage,
|
|
322
344
|
BaseTranslationPackage,
|
|
345
|
+
BaseTypeMemberAccessorEntity,
|
|
323
346
|
BoundTypeMemberLookup,
|
|
324
347
|
Cached,
|
|
325
348
|
CancelledError,
|
|
@@ -334,7 +357,6 @@ export {
|
|
|
334
357
|
ConfigurationDirectoryNameSet,
|
|
335
358
|
ConfigurationDirectoryNamesByLocale,
|
|
336
359
|
ConfigurationFileParser,
|
|
337
|
-
ConstructorEntity,
|
|
338
360
|
ConstructorParameterInitializingFieldInfo,
|
|
339
361
|
CycleFreeAliasedTypeResolutionResult,
|
|
340
362
|
CycleFreeBaseAspectTypesResolutionResult,
|
|
@@ -350,8 +372,6 @@ export {
|
|
|
350
372
|
DefaultNamesOfDirectoriesToIgnore,
|
|
351
373
|
DefaultTsLibDeclarationsFileName,
|
|
352
374
|
DefinitionKind,
|
|
353
|
-
DereferenceOperatorEntity,
|
|
354
|
-
DestructorEntity,
|
|
355
375
|
Diagnostic,
|
|
356
376
|
DiagnosticAcceptorWithArgumentFactory,
|
|
357
377
|
DiagnosticCode,
|
|
@@ -375,7 +395,7 @@ export {
|
|
|
375
395
|
EntityNaming_named,
|
|
376
396
|
ErrorHandlingStrategy,
|
|
377
397
|
ExpressionAnalysisOptions,
|
|
378
|
-
|
|
398
|
+
FieldEntityWithImplicitAccessors,
|
|
379
399
|
GeneratedSourceFileScheme,
|
|
380
400
|
GenericCancellationToken,
|
|
381
401
|
HelperPhraseKind,
|
|
@@ -383,18 +403,15 @@ export {
|
|
|
383
403
|
ImportEmitKind,
|
|
384
404
|
ImportedPackageNameTree,
|
|
385
405
|
InMemoryPackageScheme,
|
|
386
|
-
IndexerEntity,
|
|
387
406
|
InterfacePackageEntityInfo,
|
|
388
407
|
Interner,
|
|
389
408
|
IntrinsicConstructorEntity,
|
|
390
409
|
IntrinsicFieldEntity,
|
|
391
|
-
IntrinsicGetterEntity,
|
|
392
410
|
IntrinsicLocalVariableEntity,
|
|
393
411
|
IntrinsicOrdinaryMethodEntity,
|
|
394
|
-
|
|
412
|
+
IntrinsicOrdinaryPackageFunctionEntity,
|
|
395
413
|
IntrinsicPackageVariableEntity,
|
|
396
414
|
IntrinsicParameterEntity,
|
|
397
|
-
IntrinsicSetterEntity,
|
|
398
415
|
IntrinsicTranslationDefinition,
|
|
399
416
|
IntrinsicTypeParameterEntity,
|
|
400
417
|
JavaScriptImplementationConfig,
|
|
@@ -416,24 +433,23 @@ export {
|
|
|
416
433
|
MatchResult,
|
|
417
434
|
MatchResultParameter,
|
|
418
435
|
MaybeLazy,
|
|
419
|
-
MethodEntity,
|
|
420
436
|
MethodKind,
|
|
421
437
|
MiddleKeywordPart,
|
|
422
438
|
Name,
|
|
423
439
|
NameFlags,
|
|
424
440
|
NodeModulesDirectoryName,
|
|
425
|
-
OperatorEntity,
|
|
426
441
|
OperatorKind,
|
|
427
442
|
Option,
|
|
428
|
-
OrdinaryMethodEntity,
|
|
429
443
|
OriginalAliasedType,
|
|
430
444
|
OriginalBaseAspectTypes,
|
|
431
445
|
OriginalBaseObjectType,
|
|
432
446
|
OriginalReductionSource,
|
|
433
447
|
OriginalTypeParameterConstraint,
|
|
448
|
+
OverriddenAndShadowedMembers,
|
|
434
449
|
PackageDialect,
|
|
435
450
|
PackageEntityMembers,
|
|
436
451
|
PackageFromDtsConfig,
|
|
452
|
+
PackageFunctionKind,
|
|
437
453
|
PackageGroupConfiguration,
|
|
438
454
|
PackageImportInfo,
|
|
439
455
|
PackageImportLocaleConfig,
|
|
@@ -510,6 +526,7 @@ export {
|
|
|
510
526
|
UnfinishedIntrinsicAnonymousFunctionTypeEntity,
|
|
511
527
|
UnfinishedIntrinsicAnonymousStructuredTypeEntity,
|
|
512
528
|
UnfinishedIntrinsicPackageStructuredTypeEntity,
|
|
529
|
+
UnfinishedIntrinsicTypeMemberAccessorEntity,
|
|
513
530
|
Uri,
|
|
514
531
|
UrisRelativityKind,
|
|
515
532
|
ValueSpecialVariableEntityInfo,
|
|
@@ -529,6 +546,7 @@ export {
|
|
|
529
546
|
entityToStringDecorator,
|
|
530
547
|
findModifier,
|
|
531
548
|
findObjectParameter,
|
|
549
|
+
findOwnModifier,
|
|
532
550
|
findTag,
|
|
533
551
|
formatString,
|
|
534
552
|
FileSystemTree_exports as fsTree,
|
|
@@ -540,10 +558,10 @@ export {
|
|
|
540
558
|
getUserLocale,
|
|
541
559
|
ifTypeEntityIsFunctionTypeAliasThenFunctionType,
|
|
542
560
|
invalidJavaScriptIdentifierCharsRegExp,
|
|
543
|
-
isAccessorEntity,
|
|
544
561
|
isAnonymousTypeEntity,
|
|
545
562
|
isBinaryOperator,
|
|
546
|
-
|
|
563
|
+
isComputedEntity,
|
|
564
|
+
isComputedEntityNoCast,
|
|
547
565
|
isEntityWithParameters,
|
|
548
566
|
isEntityWithTypeParameters,
|
|
549
567
|
isJavaScriptIdentifier,
|
|
@@ -565,6 +583,8 @@ export {
|
|
|
565
583
|
isTypeMemberEntity,
|
|
566
584
|
isTypeWithMembersOrExtensionEntity,
|
|
567
585
|
isUnaryOperator,
|
|
586
|
+
isVariableEntityWithExplicitAccessors,
|
|
587
|
+
isVariableEntityWithImplicitAccessors,
|
|
568
588
|
javaScriptIdentifierRegExp,
|
|
569
589
|
kebabCaseToCamelCase,
|
|
570
590
|
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-35ZDOLQ3.js";
|
|
10
|
+
import "../chunk-TWDMG7M3.js";
|
|
11
|
+
import "../chunk-UY7U6EAT.js";
|
|
12
12
|
export {
|
|
13
13
|
CommandLineCompiler,
|
|
14
14
|
FileSystemUri,
|