@artel/artc 0.6.26025 → 0.6.26027
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 +56 -30
- package/build/api/ApiNodeJS.js +3 -3
- package/build/api/ApiServices.js +342 -496
- package/build/{chunk-CIRH34IO.js → chunk-4HXQNBLV.js} +30 -7
- package/build/{chunk-7QPDALAB.js → chunk-HOPCXROF.js} +2 -2
- package/build/{chunk-OTHSFQXT.js → chunk-IJGHVDYP.js} +11911 -9322
- 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/api/Api.d.ts +5 -1
- package/build/types/api/ApiServices.d.ts +5 -0
- package/build/types/common/ArrayUtils.d.ts +1 -0
- package/build/types/diagnostic/DiagnosticCode.d.ts +65 -53
- 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/CustomRequests.d.ts +0 -55
- package/build/types/services/LanguageServer.d.ts +13 -7
- package/build/types/services/LanguageServerMessageHandler.d.ts +30 -0
- 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 +4 -3
- 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/types/services/a/ScriptEditingService.d.ts +0 -13
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-4HXQNBLV.js";
|
|
5
|
+
import "./chunk-HOPCXROF.js";
|
|
6
6
|
import {
|
|
7
7
|
__async
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-IJGHVDYP.js";
|
|
9
9
|
|
|
10
10
|
// source/Cli.ts
|
|
11
11
|
function main() {
|
package/build/api/Api.js
CHANGED
|
@@ -1,15 +1,18 @@
|
|
|
1
1
|
import {
|
|
2
2
|
Compiler
|
|
3
|
-
} from "../chunk-
|
|
3
|
+
} from "../chunk-HOPCXROF.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,
|
|
12
14
|
Analyzer2,
|
|
15
|
+
Analyzer3,
|
|
13
16
|
ArrayUtils,
|
|
14
17
|
ArtelSourceAndConfigurationFileExtensionSet,
|
|
15
18
|
ArtelSourceFileExtensionSet,
|
|
@@ -17,12 +20,23 @@ import {
|
|
|
17
20
|
ArtelVersion,
|
|
18
21
|
BackingSpecialVariableEntityInfo,
|
|
19
22
|
BaseAspectTypes,
|
|
23
|
+
BaseConstructorEntity,
|
|
24
|
+
BaseDereferenceOperatorEntity,
|
|
25
|
+
BaseDestructorEntity,
|
|
26
|
+
BaseFieldEntity,
|
|
27
|
+
BaseIndexerEntity,
|
|
20
28
|
BaseKeywordPart,
|
|
29
|
+
BaseMethodEntity,
|
|
21
30
|
BaseObjectType,
|
|
31
|
+
BaseOperatorEntity,
|
|
32
|
+
BaseOrdinaryMethodEntity,
|
|
33
|
+
BaseOrdinaryPackageFunctionEntity,
|
|
34
|
+
BasePackageMemberAccessorEntity,
|
|
22
35
|
BaseProgramPackage,
|
|
23
36
|
BaseSourceFile,
|
|
24
37
|
BaseTextTranslationPackage,
|
|
25
38
|
BaseTranslationPackage,
|
|
39
|
+
BaseTypeMemberAccessorEntity,
|
|
26
40
|
BoundTypeMemberLookup,
|
|
27
41
|
Cached,
|
|
28
42
|
CancelledError,
|
|
@@ -36,7 +50,6 @@ import {
|
|
|
36
50
|
ConfigurationDirectoryNameSet,
|
|
37
51
|
ConfigurationDirectoryNamesByLocale,
|
|
38
52
|
ConfigurationFileParser,
|
|
39
|
-
ConstructorEntity,
|
|
40
53
|
ConstructorParameterInitializingFieldInfo,
|
|
41
54
|
CycleFreeAliasedTypeResolutionResult,
|
|
42
55
|
CycleFreeBaseAspectTypesResolutionResult,
|
|
@@ -52,8 +65,6 @@ import {
|
|
|
52
65
|
DefaultNamesOfDirectoriesToIgnore,
|
|
53
66
|
DefaultTsLibDeclarationsFileName,
|
|
54
67
|
DefinitionKind,
|
|
55
|
-
DereferenceOperatorEntity,
|
|
56
|
-
DestructorEntity,
|
|
57
68
|
Diagnostic,
|
|
58
69
|
DiagnosticAcceptorWithArgumentFactory,
|
|
59
70
|
DiagnosticCode,
|
|
@@ -77,7 +88,7 @@ import {
|
|
|
77
88
|
EntityNaming_named,
|
|
78
89
|
ErrorHandlingStrategy,
|
|
79
90
|
ExpressionAnalysisOptions,
|
|
80
|
-
|
|
91
|
+
FieldEntityWithImplicitAccessors,
|
|
81
92
|
FileSystemTree_exports,
|
|
82
93
|
GeneratedSourceFileScheme,
|
|
83
94
|
GenericCancellationToken,
|
|
@@ -86,18 +97,15 @@ import {
|
|
|
86
97
|
ImportEmitKind,
|
|
87
98
|
ImportedPackageNameTree,
|
|
88
99
|
InMemoryPackageScheme,
|
|
89
|
-
IndexerEntity,
|
|
90
100
|
InterfacePackageEntityInfo,
|
|
91
101
|
Interner,
|
|
92
102
|
IntrinsicConstructorEntity,
|
|
93
103
|
IntrinsicFieldEntity,
|
|
94
|
-
IntrinsicGetterEntity,
|
|
95
104
|
IntrinsicLocalVariableEntity,
|
|
96
105
|
IntrinsicOrdinaryMethodEntity,
|
|
97
|
-
|
|
106
|
+
IntrinsicOrdinaryPackageFunctionEntity,
|
|
98
107
|
IntrinsicPackageVariableEntity,
|
|
99
108
|
IntrinsicParameterEntity,
|
|
100
|
-
IntrinsicSetterEntity,
|
|
101
109
|
IntrinsicTranslationDefinition,
|
|
102
110
|
IntrinsicTypeParameterEntity,
|
|
103
111
|
JavaScriptImplementationConfig,
|
|
@@ -119,27 +127,26 @@ import {
|
|
|
119
127
|
MatchResult,
|
|
120
128
|
MatchResultParameter,
|
|
121
129
|
MaybeLazy,
|
|
122
|
-
MethodEntity,
|
|
123
130
|
MethodKind,
|
|
124
131
|
MiddleKeywordPart,
|
|
125
132
|
Name,
|
|
126
133
|
NameFlags,
|
|
127
134
|
NodeModulesDirectoryName,
|
|
128
|
-
OperatorEntity,
|
|
129
135
|
OperatorKind,
|
|
130
136
|
Option,
|
|
131
|
-
OrdinaryMethodEntity,
|
|
132
137
|
OriginalAliasedType,
|
|
133
138
|
OriginalBaseAspectTypes,
|
|
134
139
|
OriginalBaseObjectType,
|
|
135
140
|
OriginalReductionSource,
|
|
136
141
|
OriginalTypeParameterConstraint,
|
|
142
|
+
OverriddenAndShadowedMembers,
|
|
137
143
|
PackageConfigurationEn_exports,
|
|
138
144
|
PackageConfigurationRu_exports,
|
|
139
145
|
PackageContent_exports,
|
|
140
146
|
PackageDialect,
|
|
141
147
|
PackageEntityMembers,
|
|
142
148
|
PackageFromDtsConfig,
|
|
149
|
+
PackageFunctionKind,
|
|
143
150
|
PackageGroupConfiguration,
|
|
144
151
|
PackageImportInfo,
|
|
145
152
|
PackageImportLocaleConfig,
|
|
@@ -216,6 +223,7 @@ import {
|
|
|
216
223
|
UnfinishedIntrinsicAnonymousFunctionTypeEntity,
|
|
217
224
|
UnfinishedIntrinsicAnonymousStructuredTypeEntity,
|
|
218
225
|
UnfinishedIntrinsicPackageStructuredTypeEntity,
|
|
226
|
+
UnfinishedIntrinsicTypeMemberAccessorEntity,
|
|
219
227
|
Uri,
|
|
220
228
|
UrisRelativityKind,
|
|
221
229
|
ValueSpecialVariableEntityInfo,
|
|
@@ -234,6 +242,7 @@ import {
|
|
|
234
242
|
entityToStringDecorator,
|
|
235
243
|
findModifier,
|
|
236
244
|
findObjectParameter,
|
|
245
|
+
findOwnModifier,
|
|
237
246
|
findTag,
|
|
238
247
|
formatString,
|
|
239
248
|
getFileExtension,
|
|
@@ -244,10 +253,10 @@ import {
|
|
|
244
253
|
getUserLocale,
|
|
245
254
|
ifTypeEntityIsFunctionTypeAliasThenFunctionType,
|
|
246
255
|
invalidJavaScriptIdentifierCharsRegExp,
|
|
247
|
-
isAccessorEntity,
|
|
248
256
|
isAnonymousTypeEntity,
|
|
249
257
|
isBinaryOperator,
|
|
250
|
-
|
|
258
|
+
isComputedEntity,
|
|
259
|
+
isComputedEntityNoCast,
|
|
251
260
|
isEntityWithParameters,
|
|
252
261
|
isEntityWithTypeParameters,
|
|
253
262
|
isJavaScriptIdentifier,
|
|
@@ -269,11 +278,14 @@ import {
|
|
|
269
278
|
isTypeMemberEntity,
|
|
270
279
|
isTypeWithMembersOrExtensionEntity,
|
|
271
280
|
isUnaryOperator,
|
|
281
|
+
isVariableEntityWithExplicitAccessors,
|
|
282
|
+
isVariableEntityWithImplicitAccessors,
|
|
272
283
|
javaScriptIdentifierRegExp,
|
|
273
284
|
kebabCaseToCamelCase,
|
|
274
285
|
keywordKindByOperatorKind,
|
|
275
286
|
localeToString,
|
|
276
287
|
locales,
|
|
288
|
+
m_exports,
|
|
277
289
|
modifierToModifierFlag,
|
|
278
290
|
operatorKindsBySyntacticalOperatorKind,
|
|
279
291
|
parseBinaryInteger,
|
|
@@ -289,6 +301,7 @@ import {
|
|
|
289
301
|
semantic_context_exports,
|
|
290
302
|
setUserLocale,
|
|
291
303
|
tokenTextByOperatorKind,
|
|
304
|
+
tree_exports,
|
|
292
305
|
tryParseLocale,
|
|
293
306
|
types_exports,
|
|
294
307
|
unescapeText,
|
|
@@ -297,16 +310,19 @@ import {
|
|
|
297
310
|
withoutQuotes,
|
|
298
311
|
withoutTemplateQuotes,
|
|
299
312
|
yieldTask
|
|
300
|
-
} from "../chunk-
|
|
313
|
+
} from "../chunk-IJGHVDYP.js";
|
|
301
314
|
export {
|
|
302
315
|
AccessKind,
|
|
303
316
|
AccessedFunction_entity,
|
|
304
317
|
AccessedFunction_substitutedFunction,
|
|
305
318
|
AccessedFunction_typeMember,
|
|
319
|
+
AccessorEntity,
|
|
320
|
+
AccessorKind,
|
|
306
321
|
AccumulatingDiagnosticAcceptor,
|
|
307
322
|
AliasedType,
|
|
308
323
|
Analyzer,
|
|
309
|
-
|
|
324
|
+
Analyzer3 as AnalyzerA,
|
|
325
|
+
Analyzer2 as AnalyzerM,
|
|
310
326
|
ArrayUtils,
|
|
311
327
|
ArtelSourceAndConfigurationFileExtensionSet,
|
|
312
328
|
ArtelSourceFileExtensionSet,
|
|
@@ -314,12 +330,23 @@ export {
|
|
|
314
330
|
ArtelVersion,
|
|
315
331
|
BackingSpecialVariableEntityInfo,
|
|
316
332
|
BaseAspectTypes,
|
|
333
|
+
BaseConstructorEntity,
|
|
334
|
+
BaseDereferenceOperatorEntity,
|
|
335
|
+
BaseDestructorEntity,
|
|
336
|
+
BaseFieldEntity,
|
|
337
|
+
BaseIndexerEntity,
|
|
317
338
|
BaseKeywordPart,
|
|
339
|
+
BaseMethodEntity,
|
|
318
340
|
BaseObjectType,
|
|
341
|
+
BaseOperatorEntity,
|
|
342
|
+
BaseOrdinaryMethodEntity,
|
|
343
|
+
BaseOrdinaryPackageFunctionEntity,
|
|
344
|
+
BasePackageMemberAccessorEntity,
|
|
319
345
|
BaseProgramPackage,
|
|
320
346
|
BaseSourceFile,
|
|
321
347
|
BaseTextTranslationPackage,
|
|
322
348
|
BaseTranslationPackage,
|
|
349
|
+
BaseTypeMemberAccessorEntity,
|
|
323
350
|
BoundTypeMemberLookup,
|
|
324
351
|
Cached,
|
|
325
352
|
CancelledError,
|
|
@@ -334,7 +361,6 @@ export {
|
|
|
334
361
|
ConfigurationDirectoryNameSet,
|
|
335
362
|
ConfigurationDirectoryNamesByLocale,
|
|
336
363
|
ConfigurationFileParser,
|
|
337
|
-
ConstructorEntity,
|
|
338
364
|
ConstructorParameterInitializingFieldInfo,
|
|
339
365
|
CycleFreeAliasedTypeResolutionResult,
|
|
340
366
|
CycleFreeBaseAspectTypesResolutionResult,
|
|
@@ -350,8 +376,6 @@ export {
|
|
|
350
376
|
DefaultNamesOfDirectoriesToIgnore,
|
|
351
377
|
DefaultTsLibDeclarationsFileName,
|
|
352
378
|
DefinitionKind,
|
|
353
|
-
DereferenceOperatorEntity,
|
|
354
|
-
DestructorEntity,
|
|
355
379
|
Diagnostic,
|
|
356
380
|
DiagnosticAcceptorWithArgumentFactory,
|
|
357
381
|
DiagnosticCode,
|
|
@@ -375,7 +399,7 @@ export {
|
|
|
375
399
|
EntityNaming_named,
|
|
376
400
|
ErrorHandlingStrategy,
|
|
377
401
|
ExpressionAnalysisOptions,
|
|
378
|
-
|
|
402
|
+
FieldEntityWithImplicitAccessors,
|
|
379
403
|
GeneratedSourceFileScheme,
|
|
380
404
|
GenericCancellationToken,
|
|
381
405
|
HelperPhraseKind,
|
|
@@ -383,18 +407,15 @@ export {
|
|
|
383
407
|
ImportEmitKind,
|
|
384
408
|
ImportedPackageNameTree,
|
|
385
409
|
InMemoryPackageScheme,
|
|
386
|
-
IndexerEntity,
|
|
387
410
|
InterfacePackageEntityInfo,
|
|
388
411
|
Interner,
|
|
389
412
|
IntrinsicConstructorEntity,
|
|
390
413
|
IntrinsicFieldEntity,
|
|
391
|
-
IntrinsicGetterEntity,
|
|
392
414
|
IntrinsicLocalVariableEntity,
|
|
393
415
|
IntrinsicOrdinaryMethodEntity,
|
|
394
|
-
|
|
416
|
+
IntrinsicOrdinaryPackageFunctionEntity,
|
|
395
417
|
IntrinsicPackageVariableEntity,
|
|
396
418
|
IntrinsicParameterEntity,
|
|
397
|
-
IntrinsicSetterEntity,
|
|
398
419
|
IntrinsicTranslationDefinition,
|
|
399
420
|
IntrinsicTypeParameterEntity,
|
|
400
421
|
JavaScriptImplementationConfig,
|
|
@@ -416,24 +437,23 @@ export {
|
|
|
416
437
|
MatchResult,
|
|
417
438
|
MatchResultParameter,
|
|
418
439
|
MaybeLazy,
|
|
419
|
-
MethodEntity,
|
|
420
440
|
MethodKind,
|
|
421
441
|
MiddleKeywordPart,
|
|
422
442
|
Name,
|
|
423
443
|
NameFlags,
|
|
424
444
|
NodeModulesDirectoryName,
|
|
425
|
-
OperatorEntity,
|
|
426
445
|
OperatorKind,
|
|
427
446
|
Option,
|
|
428
|
-
OrdinaryMethodEntity,
|
|
429
447
|
OriginalAliasedType,
|
|
430
448
|
OriginalBaseAspectTypes,
|
|
431
449
|
OriginalBaseObjectType,
|
|
432
450
|
OriginalReductionSource,
|
|
433
451
|
OriginalTypeParameterConstraint,
|
|
452
|
+
OverriddenAndShadowedMembers,
|
|
434
453
|
PackageDialect,
|
|
435
454
|
PackageEntityMembers,
|
|
436
455
|
PackageFromDtsConfig,
|
|
456
|
+
PackageFunctionKind,
|
|
437
457
|
PackageGroupConfiguration,
|
|
438
458
|
PackageImportInfo,
|
|
439
459
|
PackageImportLocaleConfig,
|
|
@@ -510,6 +530,7 @@ export {
|
|
|
510
530
|
UnfinishedIntrinsicAnonymousFunctionTypeEntity,
|
|
511
531
|
UnfinishedIntrinsicAnonymousStructuredTypeEntity,
|
|
512
532
|
UnfinishedIntrinsicPackageStructuredTypeEntity,
|
|
533
|
+
UnfinishedIntrinsicTypeMemberAccessorEntity,
|
|
513
534
|
Uri,
|
|
514
535
|
UrisRelativityKind,
|
|
515
536
|
ValueSpecialVariableEntityInfo,
|
|
@@ -529,6 +550,7 @@ export {
|
|
|
529
550
|
entityToStringDecorator,
|
|
530
551
|
findModifier,
|
|
531
552
|
findObjectParameter,
|
|
553
|
+
findOwnModifier,
|
|
532
554
|
findTag,
|
|
533
555
|
formatString,
|
|
534
556
|
FileSystemTree_exports as fsTree,
|
|
@@ -540,10 +562,10 @@ export {
|
|
|
540
562
|
getUserLocale,
|
|
541
563
|
ifTypeEntityIsFunctionTypeAliasThenFunctionType,
|
|
542
564
|
invalidJavaScriptIdentifierCharsRegExp,
|
|
543
|
-
isAccessorEntity,
|
|
544
565
|
isAnonymousTypeEntity,
|
|
545
566
|
isBinaryOperator,
|
|
546
|
-
|
|
567
|
+
isComputedEntity,
|
|
568
|
+
isComputedEntityNoCast,
|
|
547
569
|
isEntityWithParameters,
|
|
548
570
|
isEntityWithTypeParameters,
|
|
549
571
|
isJavaScriptIdentifier,
|
|
@@ -565,6 +587,8 @@ export {
|
|
|
565
587
|
isTypeMemberEntity,
|
|
566
588
|
isTypeWithMembersOrExtensionEntity,
|
|
567
589
|
isUnaryOperator,
|
|
590
|
+
isVariableEntityWithExplicitAccessors,
|
|
591
|
+
isVariableEntityWithImplicitAccessors,
|
|
568
592
|
javaScriptIdentifierRegExp,
|
|
569
593
|
kebabCaseToCamelCase,
|
|
570
594
|
keywordKindByOperatorKind,
|
|
@@ -586,7 +610,9 @@ export {
|
|
|
586
610
|
semantic_context_exports as semanticContext,
|
|
587
611
|
setUserLocale,
|
|
588
612
|
tokenTextByOperatorKind,
|
|
589
|
-
|
|
613
|
+
tree_exports as tree,
|
|
614
|
+
a_exports as treeA,
|
|
615
|
+
m_exports as treeM,
|
|
590
616
|
tryParseLocale,
|
|
591
617
|
types_exports as type,
|
|
592
618
|
unescapeText,
|
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-4HXQNBLV.js";
|
|
10
|
+
import "../chunk-HOPCXROF.js";
|
|
11
|
+
import "../chunk-IJGHVDYP.js";
|
|
12
12
|
export {
|
|
13
13
|
CommandLineCompiler,
|
|
14
14
|
FileSystemUri,
|