@artel/artc 0.6.25276 → 0.6.25278
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 +14 -10
- package/build/api/ApiNodeJS.js +3 -3
- package/build/api/ApiServices.js +286 -293
- package/build/{chunk-OS2SFHBZ.js → chunk-4C7CEJJF.js} +20 -24
- package/build/{chunk-LX6LUKPR.js → chunk-A2QTLTGI.js} +1935 -1176
- package/build/{chunk-MT6TPXET.js → chunk-L44WWCT7.js} +15 -15
- package/build/types/analysis/AccessedFunction.d.ts +3 -3
- package/build/types/analysis/AnalyzedTextTranslationPackage.d.ts +2 -2
- package/build/types/analysis/AnalyzedTranslationPackage.d.ts +11 -8
- package/build/types/analysis/Analyzer.d.ts +21 -19
- package/build/types/analysis/DeclarationsUsageCounter.d.ts +2 -2
- package/build/types/analysis/{DiagnosticCollector.d.ts → SourceFileAnalyzer.d.ts} +4 -5
- package/build/types/analysis/SourcePackageDependencyGraph.d.ts +2 -2
- package/build/types/analysis/SubstitutedFunction.d.ts +3 -3
- package/build/types/analysis/TranslatedEntityNameConflictsValidator.d.ts +28 -0
- package/build/types/analysis/Translation.d.ts +1 -2
- package/build/types/analysis/index.d.ts +1 -1
- package/build/types/analysis/semantic-context/Declarations.d.ts +3 -3
- package/build/types/analysis/semantic-context/SemanticContextBase.d.ts +2 -2
- package/build/types/api/Api.d.ts +1 -1
- package/build/types/common/TaskController.d.ts +14 -0
- package/build/types/common/TreeTraversal.d.ts +10 -9
- package/build/types/common/index.d.ts +1 -2
- package/build/types/diagnostic/DiagnosticCode.d.ts +5 -1
- package/build/types/emitter/Emitter.d.ts +3 -3
- package/build/types/emitter/EmitterContext.d.ts +1 -1
- package/build/types/emitter/EntityMap.d.ts +1 -1
- package/build/types/entities/Entity.d.ts +3 -1
- package/build/types/entities/EntityNaming.d.ts +2 -0
- package/build/types/entities/interfaces/FunctionEntity.d.ts +19 -6
- package/build/types/entities/interfaces/TypeParameterEntity.d.ts +2 -2
- package/build/types/entities/intrinsic/IntrinsicFunctionEntity.d.ts +3 -1
- package/build/types/entities/source/SourceFunctionEntity.d.ts +86 -5
- package/build/types/entities/source/SourceVariableEntity.d.ts +3 -1
- package/build/types/entities/translated/TranslatedAliasTypeEntity.d.ts +0 -1
- package/build/types/entities/translated/TranslatedConstructorEntity.d.ts +1 -1
- package/build/types/entities/translated/TranslatedFunctionEntity.d.ts +29 -14
- package/build/types/entities/translated/TranslatedFunctionTypeEntity.d.ts +0 -1
- package/build/types/entities/translated/TranslatedIndexerEntity.d.ts +19 -9
- package/build/types/entities/translated/TranslatedOperatorEntity.d.ts +21 -10
- package/build/types/entities/translated/TranslatedPackageEntity.d.ts +0 -2
- package/build/types/entities/translated/TranslatedStructuredTypeEntity.d.ts +0 -1
- package/build/types/entities/translated/TranslatedVariantTypeEntity.d.ts +0 -1
- package/build/types/executor/Compiler.d.ts +6 -6
- package/build/types/executor/NodeCompiler.d.ts +6 -6
- package/build/types/project/CompilationLoader.d.ts +5 -5
- package/build/types/project/FileSystemTree.d.ts +1 -1
- package/build/types/project/PackageContentCreator.d.ts +2 -1
- package/build/types/services/DefinitionService.d.ts +2 -2
- package/build/types/services/DisplayService.d.ts +22 -7
- package/build/types/services/DocumentHighlightsService.d.ts +2 -2
- package/build/types/services/LanguageServer.d.ts +1 -1
- package/build/types/services/NodeSemanticInfo.d.ts +1 -6
- package/build/types/services/ReferencesService.d.ts +3 -3
- package/build/types/services/RenameService.d.ts +2 -2
- package/build/types/services/SemanticTokensService.d.ts +4 -4
- package/build/types/services/source-generation/SourceGenerationService.d.ts +3 -3
- package/build/types/services/workspace/CompilationController.d.ts +7 -5
- package/build/types/services/workspace/FileSystemTreeProviderBasedOnWatchedFileSystem.d.ts +2 -2
- package/build/types/services/workspace/ManuallyUpdatedFileSystemTreeProvider.d.ts +2 -2
- package/build/types/services/workspace/Workspace.d.ts +3 -5
- package/build/types/services/workspace/WorkspaceFiles.d.ts +3 -3
- package/build/types/ts-interop/Entities.d.ts +3 -0
- package/package.json +1 -1
- package/build/types/common/ThrottledCancellationToken.d.ts +0 -17
- package/build/types/common/YieldExecution.d.ts +0 -1
package/build/Cli.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
3
|
CommandLineCompiler
|
|
4
|
-
} from "./chunk-
|
|
5
|
-
import "./chunk-
|
|
4
|
+
} from "./chunk-4C7CEJJF.js";
|
|
5
|
+
import "./chunk-L44WWCT7.js";
|
|
6
6
|
import {
|
|
7
7
|
__async
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-A2QTLTGI.js";
|
|
9
9
|
|
|
10
10
|
// source/Cli.ts
|
|
11
11
|
function main() {
|
package/build/api/Api.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
Compiler
|
|
3
|
-
} from "../chunk-
|
|
3
|
+
} from "../chunk-L44WWCT7.js";
|
|
4
4
|
import {
|
|
5
5
|
AccessKind,
|
|
6
6
|
AccessedFunctionParameter,
|
|
@@ -65,7 +65,6 @@ import {
|
|
|
65
65
|
Diagnostic,
|
|
66
66
|
DiagnosticAcceptorWithArgumentFactory,
|
|
67
67
|
DiagnosticCode,
|
|
68
|
-
DiagnosticCollector,
|
|
69
68
|
DiagnosticData,
|
|
70
69
|
DiagnosticFlags,
|
|
71
70
|
DiagnosticKind,
|
|
@@ -98,6 +97,8 @@ import {
|
|
|
98
97
|
FileSystemTree_exports,
|
|
99
98
|
ForStatementElementVariableDeclarationEntity,
|
|
100
99
|
ForStatementIndexVariableDeclarationEntity,
|
|
100
|
+
FunctionBlockLiteralEntity,
|
|
101
|
+
FunctionLiteralEntity,
|
|
101
102
|
FunctionLiteralParameterDeclarationEntity,
|
|
102
103
|
GeneratedSourceFileScheme,
|
|
103
104
|
GenericCancellationToken,
|
|
@@ -200,6 +201,7 @@ import {
|
|
|
200
201
|
SignatureComparisonOptions,
|
|
201
202
|
SourceAnonymousStructuredTypeDeclarationData,
|
|
202
203
|
SourceFile2 as SourceFile,
|
|
204
|
+
SourceFileAnalyzer,
|
|
203
205
|
SourceFileMembers,
|
|
204
206
|
SourceMapMode,
|
|
205
207
|
SourcePackageDependencyGraph,
|
|
@@ -221,12 +223,12 @@ import {
|
|
|
221
223
|
TagFunction,
|
|
222
224
|
TagType,
|
|
223
225
|
TargetPlatformConfig,
|
|
226
|
+
TaskController,
|
|
224
227
|
TextFile,
|
|
225
228
|
TextTranslationDeclarationEntity,
|
|
226
229
|
TextTranslationPackage,
|
|
227
230
|
TextTranslationPackageConfiguration,
|
|
228
231
|
TextTranslationPackageEntityInfo,
|
|
229
|
-
ThrottledCancellationToken,
|
|
230
232
|
Token2 as Token,
|
|
231
233
|
TokenKind,
|
|
232
234
|
Translation,
|
|
@@ -290,6 +292,7 @@ import {
|
|
|
290
292
|
isEntityWithTypeParameters,
|
|
291
293
|
isJavaScriptIdentifier,
|
|
292
294
|
isLocalizableEntity,
|
|
295
|
+
isNamedFunctionEntity,
|
|
293
296
|
isNamedPackageMemberEntity,
|
|
294
297
|
isNamedTypeEntity,
|
|
295
298
|
isNamedTypeMemberEntity,
|
|
@@ -328,7 +331,6 @@ import {
|
|
|
328
331
|
setUserLocale,
|
|
329
332
|
tokenTextByOperatorKind,
|
|
330
333
|
traverseTree,
|
|
331
|
-
traverseTreeWithCancellationToken,
|
|
332
334
|
tree_exports,
|
|
333
335
|
tryParseLocale,
|
|
334
336
|
types_exports,
|
|
@@ -341,8 +343,8 @@ import {
|
|
|
341
343
|
withoutCommentQuotes,
|
|
342
344
|
withoutQuotes,
|
|
343
345
|
withoutTemplateQuotes,
|
|
344
|
-
|
|
345
|
-
} from "../chunk-
|
|
346
|
+
yieldTask
|
|
347
|
+
} from "../chunk-A2QTLTGI.js";
|
|
346
348
|
export {
|
|
347
349
|
AccessKind,
|
|
348
350
|
AccessedFunctionParameter,
|
|
@@ -408,7 +410,6 @@ export {
|
|
|
408
410
|
Diagnostic,
|
|
409
411
|
DiagnosticAcceptorWithArgumentFactory,
|
|
410
412
|
DiagnosticCode,
|
|
411
|
-
DiagnosticCollector,
|
|
412
413
|
DiagnosticData,
|
|
413
414
|
DiagnosticFlags,
|
|
414
415
|
DiagnosticKind,
|
|
@@ -440,6 +441,8 @@ export {
|
|
|
440
441
|
FieldSetterDeclarationEntity,
|
|
441
442
|
ForStatementElementVariableDeclarationEntity,
|
|
442
443
|
ForStatementIndexVariableDeclarationEntity,
|
|
444
|
+
FunctionBlockLiteralEntity,
|
|
445
|
+
FunctionLiteralEntity,
|
|
443
446
|
FunctionLiteralParameterDeclarationEntity,
|
|
444
447
|
GeneratedSourceFileScheme,
|
|
445
448
|
GenericCancellationToken,
|
|
@@ -540,6 +543,7 @@ export {
|
|
|
540
543
|
SignatureComparisonOptions,
|
|
541
544
|
SourceAnonymousStructuredTypeDeclarationData,
|
|
542
545
|
SourceFile,
|
|
546
|
+
SourceFileAnalyzer,
|
|
543
547
|
SourceFileMembers,
|
|
544
548
|
SourceMapMode,
|
|
545
549
|
SourcePackageDependencyGraph,
|
|
@@ -561,12 +565,12 @@ export {
|
|
|
561
565
|
TagFunction,
|
|
562
566
|
TagType,
|
|
563
567
|
TargetPlatformConfig,
|
|
568
|
+
TaskController,
|
|
564
569
|
TextFile,
|
|
565
570
|
TextTranslationDeclarationEntity,
|
|
566
571
|
TextTranslationPackage,
|
|
567
572
|
TextTranslationPackageConfiguration,
|
|
568
573
|
TextTranslationPackageEntityInfo,
|
|
569
|
-
ThrottledCancellationToken,
|
|
570
574
|
Token,
|
|
571
575
|
Translation,
|
|
572
576
|
TranslationPackage,
|
|
@@ -632,6 +636,7 @@ export {
|
|
|
632
636
|
isEntityWithTypeParameters,
|
|
633
637
|
isJavaScriptIdentifier,
|
|
634
638
|
isLocalizableEntity,
|
|
639
|
+
isNamedFunctionEntity,
|
|
635
640
|
isNamedPackageMemberEntity,
|
|
636
641
|
isNamedTypeEntity,
|
|
637
642
|
isNamedTypeMemberEntity,
|
|
@@ -671,7 +676,6 @@ export {
|
|
|
671
676
|
setUserLocale,
|
|
672
677
|
tokenTextByOperatorKind,
|
|
673
678
|
traverseTree,
|
|
674
|
-
traverseTreeWithCancellationToken,
|
|
675
679
|
tree_exports as tree,
|
|
676
680
|
tryParseLocale,
|
|
677
681
|
types_exports as type,
|
|
@@ -684,5 +688,5 @@ export {
|
|
|
684
688
|
withoutCommentQuotes,
|
|
685
689
|
withoutQuotes,
|
|
686
690
|
withoutTemplateQuotes,
|
|
687
|
-
|
|
691
|
+
yieldTask
|
|
688
692
|
};
|
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-4C7CEJJF.js";
|
|
10
|
+
import "../chunk-L44WWCT7.js";
|
|
11
|
+
import "../chunk-A2QTLTGI.js";
|
|
12
12
|
export {
|
|
13
13
|
CommandLineCompiler,
|
|
14
14
|
FileSystemUri,
|