@artel/artc 0.6.25191
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 +20 -0
- package/build/api/Api.js +664 -0
- package/build/api/ApiNodeJS.js +20 -0
- package/build/api/ApiServices.js +12847 -0
- package/build/chunk-BQHCAH6D.js +588 -0
- package/build/chunk-O2JKESUU.js +63219 -0
- package/build/chunk-QRBDQKYM.js +94 -0
- package/build/types/Cli.d.ts +3 -0
- package/build/types/analysis/AccessedMethod.d.ts +53 -0
- package/build/types/analysis/AnalyzedTranslationPackage.d.ts +191 -0
- package/build/types/analysis/Analyzer.d.ts +665 -0
- package/build/types/analysis/AutotypeCallExpressionMeaning.d.ts +25 -0
- package/build/types/analysis/BaseExpressionMeaning.d.ts +47 -0
- package/build/types/analysis/BuiltInOperators.d.ts +14 -0
- package/build/types/analysis/CallArgumentToParameterMatchResult.d.ts +30 -0
- package/build/types/analysis/CallArgumentsToParametersMatcher.d.ts +44 -0
- package/build/types/analysis/CallExpressionMeaning.d.ts +39 -0
- package/build/types/analysis/ConstructorOverloadResolver.d.ts +34 -0
- package/build/types/analysis/DeclarationsUsageCounter.d.ts +18 -0
- package/build/types/analysis/DereferenceExpressionMeaning.d.ts +23 -0
- package/build/types/analysis/DiagnosticCollector.d.ts +68 -0
- package/build/types/analysis/EntityLocalizationHelper.d.ts +15 -0
- package/build/types/analysis/FindModifier.d.ts +4 -0
- package/build/types/analysis/FoundDeclaration.d.ts +19 -0
- package/build/types/analysis/IdentifierExpressionMeaning.d.ts +98 -0
- package/build/types/analysis/ImportedPackageNameTree.d.ts +22 -0
- package/build/types/analysis/IndexedAccessExpressionMeaning.d.ts +26 -0
- package/build/types/analysis/IndexerAccess.d.ts +10 -0
- package/build/types/analysis/Localization.d.ts +54 -0
- package/build/types/analysis/LocalizationContext.d.ts +15 -0
- package/build/types/analysis/Lookup.d.ts +23 -0
- package/build/types/analysis/NamedTypeResolver.d.ts +42 -0
- package/build/types/analysis/NamedTypeSpecifierResolver.d.ts +20 -0
- package/build/types/analysis/NodeTypeUtils.d.ts +28 -0
- package/build/types/analysis/ObjectExpressionMeaning.d.ts +38 -0
- package/build/types/analysis/OperationOverloadResolver.d.ts +19 -0
- package/build/types/analysis/OverloadResolver.d.ts +12 -0
- package/build/types/analysis/PackageMemberLookup.d.ts +15 -0
- package/build/types/analysis/PrefixUnaryOperatorResolver.d.ts +27 -0
- package/build/types/analysis/PropertyAccessExpressionMeaning.d.ts +100 -0
- package/build/types/analysis/Scope.d.ts +309 -0
- package/build/types/analysis/SemanticContext.d.ts +320 -0
- package/build/types/analysis/SemanticContextBuilder.d.ts +54 -0
- package/build/types/analysis/SourceFileMembers.d.ts +92 -0
- package/build/types/analysis/SourcePackageDependencyGraph.d.ts +41 -0
- package/build/types/analysis/SourcePackageMembersCreator.d.ts +6 -0
- package/build/types/analysis/StatementBlockScopeBuilder.d.ts +22 -0
- package/build/types/analysis/SubstitutedMethod.d.ts +49 -0
- package/build/types/analysis/TagMeaning.d.ts +26 -0
- package/build/types/analysis/Tags.d.ts +29 -0
- package/build/types/analysis/TargetTypeHint.d.ts +5 -0
- package/build/types/analysis/TypeInferrer.d.ts +9 -0
- package/build/types/analysis/TypeMemberLookup.d.ts +27 -0
- package/build/types/analysis/TypeOverloadResolver.d.ts +7 -0
- package/build/types/analysis/UserDefinableBinaryOperatorResolver.d.ts +37 -0
- package/build/types/analysis/Utils.d.ts +17 -0
- package/build/types/analysis/VariableAccess.d.ts +10 -0
- package/build/types/analysis/VariantLookup.d.ts +20 -0
- package/build/types/analysis/Visitor.d.ts +7 -0
- package/build/types/analysis/WellKnownDeclarations.d.ts +34 -0
- package/build/types/analysis/index.d.ts +8 -0
- package/build/types/api/Api.d.ts +59 -0
- package/build/types/api/ApiNodeJS.d.ts +5 -0
- package/build/types/api/ApiServices.d.ts +3 -0
- package/build/types/common/AccessKind.d.ts +4 -0
- package/build/types/common/ArtelFileCheck.d.ts +2 -0
- package/build/types/common/Cached.d.ts +6 -0
- package/build/types/common/CancellationToken.d.ts +13 -0
- package/build/types/common/Constants.d.ts +19 -0
- package/build/types/common/Debug.d.ts +10 -0
- package/build/types/common/Delayed.d.ts +7 -0
- package/build/types/common/ErrorHandlingStrategy.d.ts +3 -0
- package/build/types/common/FormatString.d.ts +5 -0
- package/build/types/common/HelperPhrases.d.ts +11 -0
- package/build/types/common/Interner.d.ts +4 -0
- package/build/types/common/L10nConfig.d.ts +1 -0
- package/build/types/common/Lazy.d.ts +9 -0
- package/build/types/common/LocalizationHelper.d.ts +10 -0
- package/build/types/common/Logger.d.ts +10 -0
- package/build/types/common/Name.d.ts +83 -0
- package/build/types/common/NameFormatConversion.d.ts +12 -0
- package/build/types/common/NonEmptyArray.d.ts +8 -0
- package/build/types/common/Option.d.ts +28 -0
- package/build/types/common/PackageDialect.d.ts +5 -0
- package/build/types/common/PackageLocale.d.ts +15 -0
- package/build/types/common/PackageLocaleGuard.d.ts +1 -0
- package/build/types/common/Path.d.ts +8 -0
- package/build/types/common/PerformanceMeasurement.d.ts +20 -0
- package/build/types/common/Query.d.ts +39 -0
- package/build/types/common/Range.d.ts +10 -0
- package/build/types/common/Result.d.ts +13 -0
- package/build/types/common/SearchName.d.ts +13 -0
- package/build/types/common/ThrottledCancellationToken.d.ts +17 -0
- package/build/types/common/TreeQuery.d.ts +53 -0
- package/build/types/common/TreeTraversal.d.ts +13 -0
- package/build/types/common/Uri.d.ts +28 -0
- package/build/types/common/UriTree.d.ts +41 -0
- package/build/types/common/UserLocale.d.ts +2 -0
- package/build/types/common/WithDiagnostics.d.ts +19 -0
- package/build/types/common/YieldExecution.d.ts +1 -0
- package/build/types/common/index.d.ts +32 -0
- package/build/types/diagnostic/Diagnostic.d.ts +21 -0
- package/build/types/diagnostic/DiagnosticCode.d.ts +146 -0
- package/build/types/diagnostic/DiagnosticData.d.ts +20 -0
- package/build/types/diagnostic/DiagnosticFormatter.d.ts +8 -0
- package/build/types/diagnostic/RangeDiagnostic.d.ts +19 -0
- package/build/types/emitter/BlockStatementTransformationResult.d.ts +10 -0
- package/build/types/emitter/CustomModuleLoader.d.ts +1 -0
- package/build/types/emitter/DebugStack.d.ts +10 -0
- package/build/types/emitter/Emitter.d.ts +61 -0
- package/build/types/emitter/EmitterContext.d.ts +342 -0
- package/build/types/emitter/EmitterGeneratedDeclarationKind.d.ts +36 -0
- package/build/types/emitter/EmitterPackage.d.ts +60 -0
- package/build/types/emitter/EntityNameProviders.d.ts +33 -0
- package/build/types/emitter/ExpressionTransformationResult.d.ts +17 -0
- package/build/types/emitter/GeneralLowering.d.ts +72 -0
- package/build/types/emitter/Internal.d.ts +10 -0
- package/build/types/emitter/IntrinsicEntities.d.ts +118 -0
- package/build/types/emitter/IrBuilder.d.ts +108 -0
- package/build/types/emitter/IrToJs.d.ts +113 -0
- package/build/types/emitter/JavaScriptName.d.ts +1 -0
- package/build/types/emitter/PackageMemberDeclarationTransformationResult.d.ts +17 -0
- package/build/types/emitter/SimpleTransformationResult.d.ts +14 -0
- package/build/types/emitter/StatementTransformationResult.d.ts +16 -0
- package/build/types/emitter/StructuredTypeMemberDeclarationTransformationResult.d.ts +13 -0
- package/build/types/emitter/TransformationContinuationAction.d.ts +4 -0
- package/build/types/emitter/Transformer.d.ts +282 -0
- package/build/types/emitter/TypeAccessExpressionTransformationResult.d.ts +12 -0
- package/build/types/emitter/error-boundary.d.ts +10 -0
- package/build/types/emitter/index.d.ts +1 -0
- package/build/types/emitter/ir/AccessedEntities.d.ts +19 -0
- package/build/types/emitter/ir/LoweringOptions.d.ts +34 -0
- package/build/types/emitter/ir/Nodes.d.ts +1585 -0
- package/build/types/emitter/ir/SourceLocation.d.ts +10 -0
- package/build/types/emitter/ir/index.d.ts +5 -0
- package/build/types/emitter/ir/types.d.ts +10 -0
- package/build/types/entities/AliasTypeEntity.d.ts +84 -0
- package/build/types/entities/BinaryOperatorEntity.d.ts +48 -0
- package/build/types/entities/ConstructorEntity.d.ts +99 -0
- package/build/types/entities/DereferenceOperatorEntity.d.ts +40 -0
- package/build/types/entities/DestructorEntity.d.ts +31 -0
- package/build/types/entities/EntityHiding.d.ts +27 -0
- package/build/types/entities/EntityNaming.d.ts +12 -0
- package/build/types/entities/GetterEntity.d.ts +86 -0
- package/build/types/entities/IndexerEntity.d.ts +51 -0
- package/build/types/entities/MethodEntity.d.ts +174 -0
- package/build/types/entities/MethodTypeEntity.d.ts +98 -0
- package/build/types/entities/PackageAliasEntity.d.ts +30 -0
- package/build/types/entities/PackageEntity.d.ts +56 -0
- package/build/types/entities/PackageMembers.d.ts +98 -0
- package/build/types/entities/SetterEntity.d.ts +78 -0
- package/build/types/entities/StructuredTypeEntity.d.ts +199 -0
- package/build/types/entities/SubstitutionApplicationMode.d.ts +4 -0
- package/build/types/entities/TypeEntityMembers.d.ts +36 -0
- package/build/types/entities/TypeExtensionEntity.d.ts +33 -0
- package/build/types/entities/TypeMemberContainer.d.ts +23 -0
- package/build/types/entities/TypeParameterEntity.d.ts +94 -0
- package/build/types/entities/UnaryOperatorEntity.d.ts +33 -0
- package/build/types/entities/VariableEntity.d.ts +423 -0
- package/build/types/entities/VariantEntity.d.ts +31 -0
- package/build/types/entities/VariantTypeEntity.d.ts +83 -0
- package/build/types/entities/Variants.d.ts +10 -0
- package/build/types/entities/index.d.ts +87 -0
- package/build/types/executor/CommandLineCompiler.d.ts +8 -0
- package/build/types/executor/Compiler.d.ts +15 -0
- package/build/types/executor/FileSystemUri.d.ts +5 -0
- package/build/types/executor/NodeCompiler.d.ts +39 -0
- package/build/types/executor/PhysicalFileSystem.d.ts +12 -0
- package/build/types/executor/PhysicalTypeScriptLibrariesProvider.d.ts +12 -0
- package/build/types/generated/BuiltInSystemPackages.d.ts +3 -0
- package/build/types/old/Executor.d.ts +14 -0
- package/build/types/old/JavaScriptEmitter.d.ts +1 -0
- package/build/types/old/JavaScriptEmittingVisitor.d.ts +1 -0
- package/build/types/old/NzonParser.d.ts +1 -0
- package/build/types/old/NzonScanner.d.ts +1 -0
- package/build/types/old/NzonSyntax.d.ts +1 -0
- package/build/types/old/RemoteWorkspaceFileSystem.d.ts +1 -0
- package/build/types/parser/CharacterCodes.d.ts +21 -0
- package/build/types/parser/ConvertTokenKind.d.ts +3 -0
- package/build/types/parser/KeywordDictionary.d.ts +12 -0
- package/build/types/parser/ParseNumber.d.ts +5 -0
- package/build/types/parser/Parser.d.ts +7 -0
- package/build/types/parser/ParserDiagnostic.d.ts +7 -0
- package/build/types/parser/ReservedIdentifierDictionary.d.ts +12 -0
- package/build/types/parser/Scanner.d.ts +60 -0
- package/build/types/parser/TokenKind.d.ts +73 -0
- package/build/types/parser/UnescapeText.d.ts +2 -0
- package/build/types/project/Compilation.d.ts +21 -0
- package/build/types/project/CompilationLoader.d.ts +104 -0
- package/build/types/project/FileSystemTree.d.ts +70 -0
- package/build/types/project/PackageConfigurationSerializer.d.ts +1 -0
- package/build/types/project/Position.d.ts +5 -0
- package/build/types/project/SourceFile.d.ts +21 -0
- package/build/types/project/SourcePackage.d.ts +151 -0
- package/build/types/project/TextFile.d.ts +11 -0
- package/build/types/project/configuration/BuildPackageApi.d.ts +75 -0
- package/build/types/project/configuration/ConfigurationConverter.d.ts +25 -0
- package/build/types/project/configuration/ConfigurationFileParser.d.ts +26 -0
- package/build/types/project/configuration/PackageConfigurationInterpreter.d.ts +27 -0
- package/build/types/project/configuration/types/PackageConfigurationEn.d.ts +90 -0
- package/build/types/project/configuration/types/PackageConfigurationRu.d.ts +91 -0
- package/build/types/project/index.d.ts +12 -0
- package/build/types/services/AddPropertyAssignmentService.d.ts +15 -0
- package/build/types/services/CompletionService.d.ts +95 -0
- package/build/types/services/CustomCommand.d.ts +120 -0
- package/build/types/services/DefinitionService.d.ts +19 -0
- package/build/types/services/DisplayService.d.ts +830 -0
- package/build/types/services/DocumentHighlightsService.d.ts +18 -0
- package/build/types/services/EvaluatableExpressionService.d.ts +15 -0
- package/build/types/services/FileSystemTreeDisplayService.d.ts +7 -0
- package/build/types/services/HoverService.d.ts +17 -0
- package/build/types/services/LanguageServer.d.ts +125 -0
- package/build/types/services/NodeSemanticInfo.d.ts +132 -0
- package/build/types/services/ProjectItemsService.d.ts +6 -0
- package/build/types/services/ReferencesService.d.ts +30 -0
- package/build/types/services/RenameService.d.ts +16 -0
- package/build/types/services/SelectionRangeService.d.ts +12 -0
- package/build/types/services/SemanticTokensService.d.ts +40 -0
- package/build/types/services/SourceFileItemsService.d.ts +42 -0
- package/build/types/services/TranslationService.d.ts +23 -0
- package/build/types/services/TreeUtils.d.ts +58 -0
- package/build/types/services/TypeDefinitionService.d.ts +9 -0
- package/build/types/services/Types.d.ts +22 -0
- package/build/types/services/Utils.d.ts +5 -0
- package/build/types/services/signature-help/SignatureHelpService.d.ts +17 -0
- package/build/types/services/signature-help/SignatureWithValueParameters.d.ts +114 -0
- package/build/types/services/signature-help/TypeParameterSignatureHelpProvider.d.ts +20 -0
- package/build/types/services/signature-help/ValueParametersSignatureHelpProvider.d.ts +15 -0
- package/build/types/services/signature-help/utils.d.ts +9 -0
- package/build/types/services/source-generation/EntityToSyntax.d.ts +47 -0
- package/build/types/services/source-generation/SourceGenerationService.d.ts +22 -0
- package/build/types/services/workspace/ClientTrackedSourceFiles.d.ts +41 -0
- package/build/types/services/workspace/CompilationController.d.ts +108 -0
- package/build/types/services/workspace/FileSystemTreeProviderBasedOnWatchedFileSystem.d.ts +61 -0
- package/build/types/services/workspace/ManuallyUpdatedFileSystemTreeProvider.d.ts +21 -0
- package/build/types/services/workspace/Workspace.d.ts +59 -0
- package/build/types/services/workspace/WorkspaceFileSystem.d.ts +5 -0
- package/build/types/services/workspace/WorkspaceFiles.d.ts +35 -0
- package/build/types/services/workspace/index.d.ts +7 -0
- package/build/types/tree/KeywordKind.d.ts +64 -0
- package/build/types/tree/NodeKind.d.ts +163 -0
- package/build/types/tree/TokenKind.d.ts +132 -0
- package/build/types/tree/TriviaKind.d.ts +7 -0
- package/build/types/tree/green/BaseNode.d.ts +12 -0
- package/build/types/tree/green/Nodes.d.ts +2235 -0
- package/build/types/tree/green/SyntaxFactory.d.ts +67 -0
- package/build/types/tree/green/SyntaxToCode.d.ts +116 -0
- package/build/types/tree/green/Token.d.ts +37 -0
- package/build/types/tree/green/Utils.d.ts +2 -0
- package/build/types/tree/green/index.d.ts +7 -0
- package/build/types/tree/index.d.ts +4 -0
- package/build/types/tree/red/BaseNode.d.ts +15 -0
- package/build/types/tree/red/Internal.d.ts +2 -0
- package/build/types/tree/red/NodePath.d.ts +10 -0
- package/build/types/tree/red/Nodes.d.ts +2237 -0
- package/build/types/tree/red/Token.d.ts +29 -0
- package/build/types/tree/red/Utils.d.ts +6 -0
- package/build/types/tree/red/index.d.ts +6 -0
- package/build/types/ts-interop/Entities.d.ts +634 -0
- package/build/types/ts-interop/TsInteropContext.d.ts +179 -0
- package/build/types/ts-interop/TsLibrariesProvider.d.ts +12 -0
- package/build/types/ts-interop/TsPackageContents.d.ts +64 -0
- package/build/types/ts-interop/TsPackageMembersCreator.d.ts +69 -0
- package/build/types/ts-interop/TsProgramLoader.d.ts +38 -0
- package/build/types/ts-interop/TsTypeMembersCreator.d.ts +45 -0
- package/build/types/ts-interop/Utils.d.ts +43 -0
- package/build/types/types/AliasType.d.ts +20 -0
- package/build/types/types/Internal.d.ts +1 -0
- package/build/types/types/MethodType.d.ts +23 -0
- package/build/types/types/ParameterType.d.ts +19 -0
- package/build/types/types/StandardTypes.d.ts +42 -0
- package/build/types/types/StructuredType.d.ts +25 -0
- package/build/types/types/Substitutions.d.ts +18 -0
- package/build/types/types/Type.d.ts +16 -0
- package/build/types/types/TypeFactory.d.ts +15 -0
- package/build/types/types/TypeMembers.d.ts +134 -0
- package/build/types/types/UnionType.d.ts +20 -0
- package/build/types/types/UnresolvedType.d.ts +16 -0
- package/build/types/types/VariantType.d.ts +19 -0
- package/build/types/types/index.d.ts +12 -0
- package/package.json +73 -0
package/build/Cli.js
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
#!/usr/bin/env node
|
2
|
+
import {
|
3
|
+
CommandLineCompiler
|
4
|
+
} from "./chunk-BQHCAH6D.js";
|
5
|
+
import "./chunk-QRBDQKYM.js";
|
6
|
+
import {
|
7
|
+
__async
|
8
|
+
} from "./chunk-O2JKESUU.js";
|
9
|
+
|
10
|
+
// source/Cli.ts
|
11
|
+
function main() {
|
12
|
+
return __async(this, null, function* () {
|
13
|
+
const exitCode = yield CommandLineCompiler.run(process.argv.slice(2));
|
14
|
+
process.exitCode = exitCode;
|
15
|
+
});
|
16
|
+
}
|
17
|
+
var Cli_default = main();
|
18
|
+
export {
|
19
|
+
Cli_default as default
|
20
|
+
};
|
package/build/api/Api.js
ADDED
@@ -0,0 +1,664 @@
|
|
1
|
+
import {
|
2
|
+
Compiler
|
3
|
+
} from "../chunk-QRBDQKYM.js";
|
4
|
+
import {
|
5
|
+
AccessKind,
|
6
|
+
AccessedMethodValueParameter,
|
7
|
+
AccessedMethod_entity,
|
8
|
+
AccessedMethod_substitutedMethod,
|
9
|
+
AccessedMethod_typeMember,
|
10
|
+
AccumulatingDiagnosticAcceptor,
|
11
|
+
AliasedPackageImportEntity,
|
12
|
+
AliasedType,
|
13
|
+
AnalyzedPackageImport,
|
14
|
+
AnalyzedPackageImports,
|
15
|
+
AnalyzedTranslationPackage,
|
16
|
+
Analyzer,
|
17
|
+
AnonymousMethodTypeDeclarationEntity,
|
18
|
+
AnonymousStructuredTypeDeclarationEntity,
|
19
|
+
AnonymousVariantTypeDeclarationEntity,
|
20
|
+
ArtelSourceAndConfigurationFileExtensionSet,
|
21
|
+
ArtelSourceFileExtensionSet,
|
22
|
+
ArtelSourceFileExtensions,
|
23
|
+
ArtelVersion,
|
24
|
+
BackingSpecialVariableEntityInfo,
|
25
|
+
BaseAspectTypes,
|
26
|
+
BaseObjectType,
|
27
|
+
BinaryOperatorKind,
|
28
|
+
BuiltInSystemPackagesScheme,
|
29
|
+
Cached,
|
30
|
+
CancelledError,
|
31
|
+
CharacterCodes,
|
32
|
+
Compilation,
|
33
|
+
CompilationKind,
|
34
|
+
CompilationLoadResult,
|
35
|
+
CompilationLoader,
|
36
|
+
ComputedPackageVariableDeclarationEntity,
|
37
|
+
ComputedTypeVariableDeclarationEntity,
|
38
|
+
ConfigurationConverter,
|
39
|
+
ConfigurationDirectoryNameSet,
|
40
|
+
ConfigurationDirectoryNamesByLocale,
|
41
|
+
ConfigurationFileParser,
|
42
|
+
ConstructorSemanticContext,
|
43
|
+
Debug,
|
44
|
+
DeclaredTypeMemberEntities,
|
45
|
+
DefaultConstructorEntity,
|
46
|
+
DefaultConstructorEntityInfo,
|
47
|
+
DefaultDialect,
|
48
|
+
DefaultLocale,
|
49
|
+
DefaultNamesOfDirectoriesToIgnore,
|
50
|
+
DefaultTsLibDeclarationsFileName,
|
51
|
+
DefinitionKind,
|
52
|
+
Delayed,
|
53
|
+
DestructorSemanticContext,
|
54
|
+
Diagnostic,
|
55
|
+
DiagnosticCode,
|
56
|
+
DiagnosticCollector,
|
57
|
+
DiagnosticData,
|
58
|
+
DiagnosticFlags,
|
59
|
+
DiagnosticKind,
|
60
|
+
DiagnosticLocation,
|
61
|
+
DirectoryEntry,
|
62
|
+
Emitter,
|
63
|
+
EntityHidingLevel_file,
|
64
|
+
EntityHidingLevel_package,
|
65
|
+
EntityHidingLevel_type,
|
66
|
+
EntityHidingLevel_typeFamily,
|
67
|
+
EntityKind,
|
68
|
+
EntityLocalizationHelper,
|
69
|
+
EntityNaming_anonymous,
|
70
|
+
EntityNaming_named,
|
71
|
+
EnumerationVariableDeclarationEntity,
|
72
|
+
ErrorVariableDeclarationEntity,
|
73
|
+
ExpressionDenotesMethodCheckResult,
|
74
|
+
FileSystemTree_exports,
|
75
|
+
ForStatementSemanticContext,
|
76
|
+
FoundAnonymousDeclaration,
|
77
|
+
FoundNamedDeclaration,
|
78
|
+
GeneratedSourceFileScheme,
|
79
|
+
GenericCancellationToken,
|
80
|
+
GetMultipleTranslationTargetsResult,
|
81
|
+
GetSingleTranslationTargetResult,
|
82
|
+
GetterSemanticContext,
|
83
|
+
ImplicitMethodBlockParameterSpecialVariableEntityInfo,
|
84
|
+
ImportEmitKind,
|
85
|
+
ImportedPackage,
|
86
|
+
ImportedPackageNameTree,
|
87
|
+
IndexerAccess_exports,
|
88
|
+
IndexerSemanticContext,
|
89
|
+
InterfacePackageEntityInfo,
|
90
|
+
Interner,
|
91
|
+
IntrinsicBinaryOperatorEntity,
|
92
|
+
IntrinsicConstructorEntity,
|
93
|
+
IntrinsicGetterEntity,
|
94
|
+
IntrinsicLocalVariableEntity,
|
95
|
+
IntrinsicPackageMethodEntity,
|
96
|
+
IntrinsicPackageVariableEntity,
|
97
|
+
IntrinsicParameterVariableEntity,
|
98
|
+
IntrinsicSetterEntity,
|
99
|
+
IntrinsicTypeMethodEntity,
|
100
|
+
IntrinsicTypeParameterEntity,
|
101
|
+
IntrinsicTypeVariableEntity,
|
102
|
+
IntrinsicUnaryOperatorEntity,
|
103
|
+
JavaScriptImplementationConfig,
|
104
|
+
JavaScriptInterfacePackageImplementationConfig,
|
105
|
+
JavaScriptModuleFormat,
|
106
|
+
JsModuleConfig,
|
107
|
+
JsonConfigurationFileNameSet,
|
108
|
+
JsonConfigurationFileNamesByLocale,
|
109
|
+
KeywordPart,
|
110
|
+
LastSemanticContextOfMethod,
|
111
|
+
LastSemanticContextOfType,
|
112
|
+
Lazy,
|
113
|
+
LinkedMultiPlatformPackage,
|
114
|
+
LinkedTypeWithMembers,
|
115
|
+
LocalVariableDeclarationEntity,
|
116
|
+
LocaleByConfigurationDirectoryName,
|
117
|
+
LocaleByJsonConfigurationFileName,
|
118
|
+
Localization,
|
119
|
+
LocalizationContext,
|
120
|
+
LocalizationHelper,
|
121
|
+
LocalizedName,
|
122
|
+
LocalizedSubprogramSignature,
|
123
|
+
LocalizedTypeHeader,
|
124
|
+
Logger,
|
125
|
+
Lookup,
|
126
|
+
MatchResult,
|
127
|
+
MatchResultValueParameter,
|
128
|
+
MethodLiteralParameterDeclarationEntity,
|
129
|
+
MethodLiteralSemanticContext,
|
130
|
+
MethodTypeParameterSemanticContext,
|
131
|
+
MethodValueParameterSemanticContext,
|
132
|
+
Name,
|
133
|
+
NameFlags,
|
134
|
+
NamedDeclaration_method,
|
135
|
+
NamedDeclaration_packageAlias,
|
136
|
+
NamedDeclaration_type,
|
137
|
+
NamedDeclaration_variable,
|
138
|
+
NestedMethodDeclarationEntity,
|
139
|
+
NodeModulesDirectoryName,
|
140
|
+
NodeTypeUtils,
|
141
|
+
NonHiddenEntityHidingMatcher,
|
142
|
+
Notation,
|
143
|
+
OnErrorClauseSemanticContext,
|
144
|
+
Option,
|
145
|
+
PackageAliasTypeDeclarationEntity,
|
146
|
+
PackageConfigurationEn_exports,
|
147
|
+
PackageConfigurationInterpreter,
|
148
|
+
PackageConfigurationRu_exports,
|
149
|
+
PackageConstructorSemanticContext,
|
150
|
+
PackageDialect,
|
151
|
+
PackageEntryPointSemanticContext,
|
152
|
+
PackageFromDtsConfig,
|
153
|
+
PackageGroupConfiguration,
|
154
|
+
PackageImportInfo,
|
155
|
+
PackageImportLocaleConfig,
|
156
|
+
PackageLocale,
|
157
|
+
PackageMemberLookup,
|
158
|
+
PackageMethodDeclarationEntity,
|
159
|
+
PackageMethodTypeDeclarationEntity,
|
160
|
+
PackageName,
|
161
|
+
PackageStructuredTypeDeclarationEntity,
|
162
|
+
PackageVariableDeclarationEntity,
|
163
|
+
PackageVariableGetterDeclarationEntity,
|
164
|
+
PackageVariableSetterDeclarationEntity,
|
165
|
+
PackageVariantTypeDeclarationEntity,
|
166
|
+
ParamObjectMemberSpecialVariableEntityInfo,
|
167
|
+
ParamSpecialVariableEntityInfo,
|
168
|
+
ParameterDeclarationEntity,
|
169
|
+
ParameterVariableEntityContainer,
|
170
|
+
Parser,
|
171
|
+
PerformanceMeasurement,
|
172
|
+
PerformanceMeasurementStage,
|
173
|
+
PlatformKind,
|
174
|
+
Position,
|
175
|
+
ProgramPackage,
|
176
|
+
ProgramPackageConfiguration,
|
177
|
+
Query,
|
178
|
+
Range,
|
179
|
+
RawInterpretationResult,
|
180
|
+
RequiredJsLibraryConfig,
|
181
|
+
RequiredJsLibraryConfigs,
|
182
|
+
RequiredPackageConfig,
|
183
|
+
ReservedIdentifierKind,
|
184
|
+
Result,
|
185
|
+
ResultSpecialVariableEntityInfo,
|
186
|
+
RunStatementClausesInfo,
|
187
|
+
Scanner,
|
188
|
+
ScopeChain,
|
189
|
+
SearchName,
|
190
|
+
SetterParameterDeclarationEntity,
|
191
|
+
SetterSemanticContext,
|
192
|
+
SourceFile2 as SourceFile,
|
193
|
+
SourceFileMembers,
|
194
|
+
SourceFileSemanticContext,
|
195
|
+
SourceMapMode,
|
196
|
+
SourcePackageDependencyGraph,
|
197
|
+
SourcePackageEntity,
|
198
|
+
SourcePackageStructuredTypeDeclarationData,
|
199
|
+
SourceTypeExtensionEntity,
|
200
|
+
SourceTypeParameterEntity,
|
201
|
+
StatementBlockSemanticContext,
|
202
|
+
SubprogramInfo,
|
203
|
+
SubstitutedMethod_entity,
|
204
|
+
SubstitutedMethod_typeMember,
|
205
|
+
SubstitutionApplicationMode,
|
206
|
+
SynthesizedAliasTypeConstructor,
|
207
|
+
Tag2 as Tag,
|
208
|
+
TagArgument_boolean,
|
209
|
+
TagArgument_invalid,
|
210
|
+
TagArgument_numeric,
|
211
|
+
TagArgument_string,
|
212
|
+
TargetPlatformConfig,
|
213
|
+
TargetTypeHint,
|
214
|
+
TextFile,
|
215
|
+
ThrottledCancellationToken,
|
216
|
+
Token2 as Token,
|
217
|
+
TokenKind,
|
218
|
+
TranslatedNamedPackageMember,
|
219
|
+
TranslatedNamedTypeEntityMember,
|
220
|
+
TranslatedPackageMembers,
|
221
|
+
TranslatedTypeEntityMembers,
|
222
|
+
TranslatedTypeParameter,
|
223
|
+
TranslatedValueParameter,
|
224
|
+
TranslatedVariant,
|
225
|
+
TranslatedVariants,
|
226
|
+
Translation,
|
227
|
+
TranslationPackage,
|
228
|
+
TranslationPackageConfiguration,
|
229
|
+
TraversalController,
|
230
|
+
TreeQuery,
|
231
|
+
TsInteropInputs,
|
232
|
+
TypeBodySemanticContext,
|
233
|
+
TypeConstructorDeclarationEntity,
|
234
|
+
TypeDeclaration_alias2 as TypeDeclaration_alias,
|
235
|
+
TypeDeclaration_method2 as TypeDeclaration_method,
|
236
|
+
TypeDeclaration_structured2 as TypeDeclaration_structured,
|
237
|
+
TypeDeclaration_variant2 as TypeDeclaration_variant,
|
238
|
+
TypeDereferenceOperatorDeclarationEntity,
|
239
|
+
TypeDereferencedVariableGetterDeclarationEntity,
|
240
|
+
TypeDereferencedVariableSetterDeclarationEntity,
|
241
|
+
TypeDestructorDeclarationEntity,
|
242
|
+
TypeExtensionBodySemanticContext,
|
243
|
+
TypeIndexedGetterDeclarationEntity,
|
244
|
+
TypeIndexedSetterDeclarationEntity,
|
245
|
+
TypeIndexerDeclarationEntity,
|
246
|
+
TypeIndexerParameterDeclarationEntity,
|
247
|
+
TypeMemberEntityContainer,
|
248
|
+
TypeMemberLookup,
|
249
|
+
TypeMethodDeclarationEntity,
|
250
|
+
TypeOrTypeExtension,
|
251
|
+
TypeParameterConstraint,
|
252
|
+
TypeParametersOfTypeSemanticContext,
|
253
|
+
TypeVariableDeclarationEntity,
|
254
|
+
TypeVariableGetterDeclarationEntity,
|
255
|
+
TypeVariableSetterDeclarationEntity,
|
256
|
+
UnaryOperatorKind,
|
257
|
+
UnfinishedIntrinsicAnonymousMethodTypeEntity,
|
258
|
+
UnfinishedIntrinsicAnonymousStructuredTypeEntity,
|
259
|
+
UnfinishedIntrinsicPackageMethodTypeEntity,
|
260
|
+
UnfinishedIntrinsicPackageStructuredTypeEntity,
|
261
|
+
Uri,
|
262
|
+
UriTree,
|
263
|
+
UrisRelativityKind,
|
264
|
+
ValueSpecialVariableEntityInfo,
|
265
|
+
VariableAccess_exports,
|
266
|
+
VariableToInitialize,
|
267
|
+
VariantDeclarationEntity,
|
268
|
+
VariantLookup,
|
269
|
+
WellKnownDeclarations,
|
270
|
+
WellKnownDeclarationsLoadError,
|
271
|
+
WithDiagnostics_error,
|
272
|
+
WithDiagnostics_ok,
|
273
|
+
builtInSystemPackagesDirectory,
|
274
|
+
builtInSystemPackagesFileSystemTree,
|
275
|
+
collectRequiredJsLibraryConfigs,
|
276
|
+
convertNameToKebabCasePreservingUniversalEquality,
|
277
|
+
createDefaultPackageConfiguration,
|
278
|
+
createNonEmptyArray,
|
279
|
+
createTsInteropInputsForCompilation,
|
280
|
+
entityToStringDecorator,
|
281
|
+
findModifier,
|
282
|
+
findTag,
|
283
|
+
flattenPackageMemberDeclarationList,
|
284
|
+
flattenTypeMemberDeclarationList,
|
285
|
+
formatString,
|
286
|
+
getFileExtension,
|
287
|
+
getOrCreateKeywordDictionary,
|
288
|
+
getOrCreateKeywordKindDictionary,
|
289
|
+
getPackageContainingEntity,
|
290
|
+
getParentSkippingParenthesizedExpressions,
|
291
|
+
getRequiredTypeParameterCount,
|
292
|
+
getUnescapedTextFromStringToken,
|
293
|
+
getUserLocale,
|
294
|
+
green_exports,
|
295
|
+
isAnonymousTypeEntity,
|
296
|
+
isComputedVariableEntity,
|
297
|
+
isEntityContainingTypeParameter,
|
298
|
+
isEntityContainingValueParameter,
|
299
|
+
isEntityWithTags,
|
300
|
+
isNamedTypeEntity,
|
301
|
+
isNonEmptyArray,
|
302
|
+
isPackageTypeEntity,
|
303
|
+
isSourceOrConfigurationFileName,
|
304
|
+
isTypeEntity,
|
305
|
+
isTypeEntityWithMembers,
|
306
|
+
isTypeMemberEntity,
|
307
|
+
kebabCaseToCamelCase,
|
308
|
+
localeToString,
|
309
|
+
locales,
|
310
|
+
parseBinaryInteger,
|
311
|
+
parseCyrillicHexInteger,
|
312
|
+
parseDecimalInteger,
|
313
|
+
parseIntegerLiteral,
|
314
|
+
parseLatinHexInteger,
|
315
|
+
parsePackageName,
|
316
|
+
performanceMeasurementStageNames,
|
317
|
+
performanceMeasurementStages,
|
318
|
+
reservedIdentifiersByLocale,
|
319
|
+
reservedIdentifiersKindByValue,
|
320
|
+
setUserLocale,
|
321
|
+
traverseTree,
|
322
|
+
traverseTreeWithCancellationToken,
|
323
|
+
tree_exports,
|
324
|
+
tryParseLocale,
|
325
|
+
types_exports,
|
326
|
+
unaliasType,
|
327
|
+
unescapeText,
|
328
|
+
unwrapParenthesizedExpressions,
|
329
|
+
visitChildren,
|
330
|
+
visitChildrenRecursively,
|
331
|
+
withoutQuotes,
|
332
|
+
yieldExecution
|
333
|
+
} from "../chunk-O2JKESUU.js";
|
334
|
+
export {
|
335
|
+
AccessKind,
|
336
|
+
AccessedMethodValueParameter,
|
337
|
+
AccessedMethod_entity,
|
338
|
+
AccessedMethod_substitutedMethod,
|
339
|
+
AccessedMethod_typeMember,
|
340
|
+
AccumulatingDiagnosticAcceptor,
|
341
|
+
AliasedPackageImportEntity,
|
342
|
+
AliasedType,
|
343
|
+
AnalyzedPackageImport,
|
344
|
+
AnalyzedPackageImports,
|
345
|
+
AnalyzedTranslationPackage,
|
346
|
+
Analyzer,
|
347
|
+
AnonymousMethodTypeDeclarationEntity,
|
348
|
+
AnonymousStructuredTypeDeclarationEntity,
|
349
|
+
AnonymousVariantTypeDeclarationEntity,
|
350
|
+
ArtelSourceAndConfigurationFileExtensionSet,
|
351
|
+
ArtelSourceFileExtensionSet,
|
352
|
+
ArtelSourceFileExtensions,
|
353
|
+
ArtelVersion,
|
354
|
+
BackingSpecialVariableEntityInfo,
|
355
|
+
BaseAspectTypes,
|
356
|
+
BaseObjectType,
|
357
|
+
BinaryOperatorKind,
|
358
|
+
BuiltInSystemPackagesScheme,
|
359
|
+
Cached,
|
360
|
+
CancelledError,
|
361
|
+
CharacterCodes,
|
362
|
+
Compilation,
|
363
|
+
CompilationKind,
|
364
|
+
CompilationLoadResult,
|
365
|
+
CompilationLoader,
|
366
|
+
Compiler,
|
367
|
+
ComputedPackageVariableDeclarationEntity,
|
368
|
+
ComputedTypeVariableDeclarationEntity,
|
369
|
+
ConfigurationConverter,
|
370
|
+
ConfigurationDirectoryNameSet,
|
371
|
+
ConfigurationDirectoryNamesByLocale,
|
372
|
+
ConfigurationFileParser,
|
373
|
+
ConstructorSemanticContext,
|
374
|
+
Debug,
|
375
|
+
DeclaredTypeMemberEntities,
|
376
|
+
DefaultConstructorEntity,
|
377
|
+
DefaultConstructorEntityInfo,
|
378
|
+
DefaultDialect,
|
379
|
+
DefaultLocale,
|
380
|
+
DefaultNamesOfDirectoriesToIgnore,
|
381
|
+
DefaultTsLibDeclarationsFileName,
|
382
|
+
DefinitionKind,
|
383
|
+
Delayed,
|
384
|
+
DestructorSemanticContext,
|
385
|
+
Diagnostic,
|
386
|
+
DiagnosticCode,
|
387
|
+
DiagnosticCollector,
|
388
|
+
DiagnosticData,
|
389
|
+
DiagnosticFlags,
|
390
|
+
DiagnosticKind,
|
391
|
+
DiagnosticLocation,
|
392
|
+
DirectoryEntry,
|
393
|
+
Emitter,
|
394
|
+
EntityHidingLevel_file,
|
395
|
+
EntityHidingLevel_package,
|
396
|
+
EntityHidingLevel_type,
|
397
|
+
EntityHidingLevel_typeFamily,
|
398
|
+
EntityKind,
|
399
|
+
EntityLocalizationHelper,
|
400
|
+
EntityNaming_anonymous,
|
401
|
+
EntityNaming_named,
|
402
|
+
EnumerationVariableDeclarationEntity,
|
403
|
+
ErrorVariableDeclarationEntity,
|
404
|
+
ExpressionDenotesMethodCheckResult,
|
405
|
+
ForStatementSemanticContext,
|
406
|
+
FoundAnonymousDeclaration,
|
407
|
+
FoundNamedDeclaration,
|
408
|
+
GeneratedSourceFileScheme,
|
409
|
+
GenericCancellationToken,
|
410
|
+
GetMultipleTranslationTargetsResult,
|
411
|
+
GetSingleTranslationTargetResult,
|
412
|
+
GetterSemanticContext,
|
413
|
+
ImplicitMethodBlockParameterSpecialVariableEntityInfo,
|
414
|
+
ImportEmitKind,
|
415
|
+
ImportedPackage,
|
416
|
+
ImportedPackageNameTree,
|
417
|
+
IndexerSemanticContext,
|
418
|
+
InterfacePackageEntityInfo,
|
419
|
+
Interner,
|
420
|
+
IntrinsicBinaryOperatorEntity,
|
421
|
+
IntrinsicConstructorEntity,
|
422
|
+
IntrinsicGetterEntity,
|
423
|
+
IntrinsicLocalVariableEntity,
|
424
|
+
IntrinsicPackageMethodEntity,
|
425
|
+
IntrinsicPackageVariableEntity,
|
426
|
+
IntrinsicParameterVariableEntity,
|
427
|
+
IntrinsicSetterEntity,
|
428
|
+
IntrinsicTypeMethodEntity,
|
429
|
+
IntrinsicTypeParameterEntity,
|
430
|
+
IntrinsicTypeVariableEntity,
|
431
|
+
IntrinsicUnaryOperatorEntity,
|
432
|
+
JavaScriptImplementationConfig,
|
433
|
+
JavaScriptInterfacePackageImplementationConfig,
|
434
|
+
JavaScriptModuleFormat,
|
435
|
+
JsModuleConfig,
|
436
|
+
JsonConfigurationFileNameSet,
|
437
|
+
JsonConfigurationFileNamesByLocale,
|
438
|
+
KeywordPart,
|
439
|
+
LastSemanticContextOfMethod,
|
440
|
+
LastSemanticContextOfType,
|
441
|
+
Lazy,
|
442
|
+
LinkedMultiPlatformPackage,
|
443
|
+
LinkedTypeWithMembers,
|
444
|
+
LocalVariableDeclarationEntity,
|
445
|
+
LocaleByConfigurationDirectoryName,
|
446
|
+
LocaleByJsonConfigurationFileName,
|
447
|
+
Localization,
|
448
|
+
LocalizationContext,
|
449
|
+
LocalizationHelper,
|
450
|
+
LocalizedName,
|
451
|
+
LocalizedSubprogramSignature,
|
452
|
+
LocalizedTypeHeader,
|
453
|
+
Logger,
|
454
|
+
Lookup,
|
455
|
+
MatchResult,
|
456
|
+
MatchResultValueParameter,
|
457
|
+
MethodLiteralParameterDeclarationEntity,
|
458
|
+
MethodLiteralSemanticContext,
|
459
|
+
MethodTypeParameterSemanticContext,
|
460
|
+
MethodValueParameterSemanticContext,
|
461
|
+
Name,
|
462
|
+
NameFlags,
|
463
|
+
NamedDeclaration_method,
|
464
|
+
NamedDeclaration_packageAlias,
|
465
|
+
NamedDeclaration_type,
|
466
|
+
NamedDeclaration_variable,
|
467
|
+
NestedMethodDeclarationEntity,
|
468
|
+
NodeModulesDirectoryName,
|
469
|
+
NodeTypeUtils,
|
470
|
+
NonHiddenEntityHidingMatcher,
|
471
|
+
Notation,
|
472
|
+
OnErrorClauseSemanticContext,
|
473
|
+
Option,
|
474
|
+
PackageAliasTypeDeclarationEntity,
|
475
|
+
PackageConfigurationInterpreter,
|
476
|
+
PackageConstructorSemanticContext,
|
477
|
+
PackageDialect,
|
478
|
+
PackageEntryPointSemanticContext,
|
479
|
+
PackageFromDtsConfig,
|
480
|
+
PackageGroupConfiguration,
|
481
|
+
PackageImportInfo,
|
482
|
+
PackageImportLocaleConfig,
|
483
|
+
PackageLocale,
|
484
|
+
PackageMemberLookup,
|
485
|
+
PackageMethodDeclarationEntity,
|
486
|
+
PackageMethodTypeDeclarationEntity,
|
487
|
+
PackageName,
|
488
|
+
PackageStructuredTypeDeclarationEntity,
|
489
|
+
PackageVariableDeclarationEntity,
|
490
|
+
PackageVariableGetterDeclarationEntity,
|
491
|
+
PackageVariableSetterDeclarationEntity,
|
492
|
+
PackageVariantTypeDeclarationEntity,
|
493
|
+
ParamObjectMemberSpecialVariableEntityInfo,
|
494
|
+
ParamSpecialVariableEntityInfo,
|
495
|
+
ParameterDeclarationEntity,
|
496
|
+
ParameterVariableEntityContainer,
|
497
|
+
Parser,
|
498
|
+
PerformanceMeasurement,
|
499
|
+
PerformanceMeasurementStage,
|
500
|
+
PlatformKind,
|
501
|
+
Position,
|
502
|
+
ProgramPackage,
|
503
|
+
ProgramPackageConfiguration,
|
504
|
+
Query,
|
505
|
+
Range,
|
506
|
+
RawInterpretationResult,
|
507
|
+
RequiredJsLibraryConfig,
|
508
|
+
RequiredJsLibraryConfigs,
|
509
|
+
RequiredPackageConfig,
|
510
|
+
ReservedIdentifierKind,
|
511
|
+
Result,
|
512
|
+
ResultSpecialVariableEntityInfo,
|
513
|
+
RunStatementClausesInfo,
|
514
|
+
Scanner,
|
515
|
+
TokenKind as ScannerTokenKind,
|
516
|
+
ScopeChain,
|
517
|
+
SearchName,
|
518
|
+
SetterParameterDeclarationEntity,
|
519
|
+
SetterSemanticContext,
|
520
|
+
SourceFile,
|
521
|
+
SourceFileMembers,
|
522
|
+
SourceFileSemanticContext,
|
523
|
+
SourceMapMode,
|
524
|
+
SourcePackageDependencyGraph,
|
525
|
+
SourcePackageEntity,
|
526
|
+
SourcePackageStructuredTypeDeclarationData,
|
527
|
+
SourceTypeExtensionEntity,
|
528
|
+
SourceTypeParameterEntity,
|
529
|
+
StatementBlockSemanticContext,
|
530
|
+
SubprogramInfo,
|
531
|
+
SubstitutedMethod_entity,
|
532
|
+
SubstitutedMethod_typeMember,
|
533
|
+
SubstitutionApplicationMode,
|
534
|
+
SynthesizedAliasTypeConstructor,
|
535
|
+
Tag,
|
536
|
+
TagArgument_boolean,
|
537
|
+
TagArgument_invalid,
|
538
|
+
TagArgument_numeric,
|
539
|
+
TagArgument_string,
|
540
|
+
TargetPlatformConfig,
|
541
|
+
TargetTypeHint,
|
542
|
+
TextFile,
|
543
|
+
ThrottledCancellationToken,
|
544
|
+
Token,
|
545
|
+
TranslatedNamedPackageMember,
|
546
|
+
TranslatedNamedTypeEntityMember,
|
547
|
+
TranslatedPackageMembers,
|
548
|
+
TranslatedTypeEntityMembers,
|
549
|
+
TranslatedTypeParameter,
|
550
|
+
TranslatedValueParameter,
|
551
|
+
TranslatedVariant,
|
552
|
+
TranslatedVariants,
|
553
|
+
Translation,
|
554
|
+
TranslationPackage,
|
555
|
+
TranslationPackageConfiguration,
|
556
|
+
TraversalController,
|
557
|
+
TreeQuery,
|
558
|
+
TsInteropInputs,
|
559
|
+
TypeBodySemanticContext,
|
560
|
+
TypeConstructorDeclarationEntity,
|
561
|
+
TypeDeclaration_alias,
|
562
|
+
TypeDeclaration_method,
|
563
|
+
TypeDeclaration_structured,
|
564
|
+
TypeDeclaration_variant,
|
565
|
+
TypeDereferenceOperatorDeclarationEntity,
|
566
|
+
TypeDereferencedVariableGetterDeclarationEntity,
|
567
|
+
TypeDereferencedVariableSetterDeclarationEntity,
|
568
|
+
TypeDestructorDeclarationEntity,
|
569
|
+
TypeExtensionBodySemanticContext,
|
570
|
+
TypeIndexedGetterDeclarationEntity,
|
571
|
+
TypeIndexedSetterDeclarationEntity,
|
572
|
+
TypeIndexerDeclarationEntity,
|
573
|
+
TypeIndexerParameterDeclarationEntity,
|
574
|
+
TypeMemberEntityContainer,
|
575
|
+
TypeMemberLookup,
|
576
|
+
TypeMethodDeclarationEntity,
|
577
|
+
TypeOrTypeExtension,
|
578
|
+
TypeParameterConstraint,
|
579
|
+
TypeParametersOfTypeSemanticContext,
|
580
|
+
TypeVariableDeclarationEntity,
|
581
|
+
TypeVariableGetterDeclarationEntity,
|
582
|
+
TypeVariableSetterDeclarationEntity,
|
583
|
+
UnaryOperatorKind,
|
584
|
+
UnfinishedIntrinsicAnonymousMethodTypeEntity,
|
585
|
+
UnfinishedIntrinsicAnonymousStructuredTypeEntity,
|
586
|
+
UnfinishedIntrinsicPackageMethodTypeEntity,
|
587
|
+
UnfinishedIntrinsicPackageStructuredTypeEntity,
|
588
|
+
Uri,
|
589
|
+
UriTree,
|
590
|
+
UrisRelativityKind,
|
591
|
+
ValueSpecialVariableEntityInfo,
|
592
|
+
VariableToInitialize,
|
593
|
+
VariantDeclarationEntity,
|
594
|
+
VariantLookup,
|
595
|
+
WellKnownDeclarations,
|
596
|
+
WellKnownDeclarationsLoadError,
|
597
|
+
WithDiagnostics_error,
|
598
|
+
WithDiagnostics_ok,
|
599
|
+
builtInSystemPackagesDirectory,
|
600
|
+
builtInSystemPackagesFileSystemTree,
|
601
|
+
collectRequiredJsLibraryConfigs,
|
602
|
+
PackageConfigurationEn_exports as config,
|
603
|
+
PackageConfigurationRu_exports as configRu,
|
604
|
+
convertNameToKebabCasePreservingUniversalEquality,
|
605
|
+
createDefaultPackageConfiguration,
|
606
|
+
createNonEmptyArray,
|
607
|
+
createTsInteropInputsForCompilation,
|
608
|
+
entityToStringDecorator,
|
609
|
+
findModifier,
|
610
|
+
findTag,
|
611
|
+
flattenPackageMemberDeclarationList,
|
612
|
+
flattenTypeMemberDeclarationList,
|
613
|
+
formatString,
|
614
|
+
FileSystemTree_exports as fsTree,
|
615
|
+
getFileExtension,
|
616
|
+
getOrCreateKeywordDictionary,
|
617
|
+
getOrCreateKeywordKindDictionary,
|
618
|
+
getPackageContainingEntity,
|
619
|
+
getParentSkippingParenthesizedExpressions,
|
620
|
+
getRequiredTypeParameterCount,
|
621
|
+
getUnescapedTextFromStringToken,
|
622
|
+
getUserLocale,
|
623
|
+
green_exports as green,
|
624
|
+
IndexerAccess_exports as indexerAccess,
|
625
|
+
isAnonymousTypeEntity,
|
626
|
+
isComputedVariableEntity,
|
627
|
+
isEntityContainingTypeParameter,
|
628
|
+
isEntityContainingValueParameter,
|
629
|
+
isEntityWithTags,
|
630
|
+
isNamedTypeEntity,
|
631
|
+
isNonEmptyArray,
|
632
|
+
isPackageTypeEntity,
|
633
|
+
isSourceOrConfigurationFileName,
|
634
|
+
isTypeEntity,
|
635
|
+
isTypeEntityWithMembers,
|
636
|
+
isTypeMemberEntity,
|
637
|
+
kebabCaseToCamelCase,
|
638
|
+
localeToString,
|
639
|
+
locales,
|
640
|
+
parseBinaryInteger,
|
641
|
+
parseCyrillicHexInteger,
|
642
|
+
parseDecimalInteger,
|
643
|
+
parseIntegerLiteral,
|
644
|
+
parseLatinHexInteger,
|
645
|
+
parsePackageName,
|
646
|
+
performanceMeasurementStageNames,
|
647
|
+
performanceMeasurementStages,
|
648
|
+
reservedIdentifiersByLocale,
|
649
|
+
reservedIdentifiersKindByValue,
|
650
|
+
setUserLocale,
|
651
|
+
traverseTree,
|
652
|
+
traverseTreeWithCancellationToken,
|
653
|
+
tree_exports as tree,
|
654
|
+
tryParseLocale,
|
655
|
+
types_exports as type,
|
656
|
+
unaliasType,
|
657
|
+
unescapeText,
|
658
|
+
unwrapParenthesizedExpressions,
|
659
|
+
VariableAccess_exports as variableAccess,
|
660
|
+
visitChildren,
|
661
|
+
visitChildrenRecursively,
|
662
|
+
withoutQuotes,
|
663
|
+
yieldExecution
|
664
|
+
};
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import {
|
2
|
+
CommandLineCompiler,
|
3
|
+
FileSystemUri,
|
4
|
+
NodeCompiler,
|
5
|
+
NodeDiagnosticFormatter,
|
6
|
+
PhysicalFileSystem,
|
7
|
+
PhysicalTypeScriptLibrariesProvider,
|
8
|
+
PrintingDiagnosticAcceptor
|
9
|
+
} from "../chunk-BQHCAH6D.js";
|
10
|
+
import "../chunk-QRBDQKYM.js";
|
11
|
+
import "../chunk-O2JKESUU.js";
|
12
|
+
export {
|
13
|
+
CommandLineCompiler,
|
14
|
+
FileSystemUri,
|
15
|
+
NodeCompiler,
|
16
|
+
NodeDiagnosticFormatter,
|
17
|
+
PhysicalFileSystem,
|
18
|
+
PhysicalTypeScriptLibrariesProvider,
|
19
|
+
PrintingDiagnosticAcceptor
|
20
|
+
};
|