@artel/artc 0.6.25286 → 0.6.25289
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 +4 -2
- package/build/api/ApiNodeJS.js +3 -3
- package/build/api/ApiServices.js +521 -480
- package/build/{chunk-FCVCEIPF.js → chunk-F62D5WPV.js} +7820 -7537
- package/build/{chunk-GEHKHJWI.js → chunk-WQJII6CO.js} +2 -2
- package/build/{chunk-OLLM5TTI.js → chunk-X6VSO3OR.js} +9 -9
- package/build/types/analysis/Analyzer.d.ts +12 -19
- package/build/types/analysis/ArgumentToParameterMatchResult.d.ts +1 -0
- package/build/types/analysis/ArgumentsToParametersMatcher.d.ts +6 -5
- package/build/types/analysis/BaseMemberConflictsValidator.d.ts +3 -3
- package/build/types/analysis/ConstructorCallResolver.d.ts +3 -2
- package/build/types/analysis/FunctionAccessResolver.d.ts +3 -2
- package/build/types/analysis/ModifierValidator.d.ts +5 -4
- package/build/types/analysis/ObjectExpressionMeaning.d.ts +1 -33
- package/build/types/analysis/OperatorAccessResolver.d.ts +2 -1
- package/build/types/analysis/OverloadResolver.d.ts +10 -9
- package/build/types/analysis/OwnConstructorCallExpressionMeaning.d.ts +47 -0
- package/build/types/analysis/ReductionSourceMemberFinder.d.ts +8 -8
- package/build/types/analysis/SourceFileAnalyzer.d.ts +8 -0
- package/build/types/analysis/TypeMemberLookup.d.ts +5 -1
- package/build/types/analysis/UserDefinableBinaryOperatorResolver.d.ts +3 -2
- package/build/types/analysis/Utils.d.ts +11 -0
- package/build/types/analysis/semantic-context/SemanticContext.d.ts +2 -2
- package/build/types/analysis/semantic-context/SemanticContextBuilder.d.ts +3 -4
- package/build/types/analysis/semantic-context/SubprogramBodyAndParametersSemanticContext.d.ts +7 -18
- package/build/types/common/TreeTraversal.d.ts +3 -3
- package/build/types/diagnostic/Diagnostic.d.ts +2 -0
- package/build/types/diagnostic/DiagnosticCode.d.ts +26 -23
- package/build/types/emitter/IrBuilder.d.ts +1 -0
- package/build/types/emitter/ir/Nodes.d.ts +7 -6
- package/build/types/entities/interfaces/FunctionEntity.d.ts +0 -1
- package/build/types/entities/interfaces/GetterEntity.d.ts +0 -1
- package/build/types/entities/interfaces/SetterEntity.d.ts +0 -1
- package/build/types/entities/intrinsic/IntrinsicFunctionEntity.d.ts +1 -3
- package/build/types/entities/intrinsic/IntrinsicGetterEntity.d.ts +1 -3
- package/build/types/entities/source/SourceFunctionEntity.d.ts +0 -1
- package/build/types/entities/source/SourceGetterEntity.d.ts +0 -4
- package/build/types/entities/source/SourceSetterEntity.d.ts +1 -7
- package/build/types/entities/translated/TranslatedFunctionEntity.d.ts +0 -1
- package/build/types/entities/translated/TranslatedGetterEntity.d.ts +0 -1
- package/build/types/entities/translated/TranslatedSetterEntity.d.ts +0 -1
- package/build/types/parser/TokenKind.d.ts +2 -1
- package/build/types/project/FileSystemTree.d.ts +2 -2
- package/build/types/services/DocumentHighlightsService.d.ts +1 -1
- package/build/types/services/NodeSemanticInfo.d.ts +1 -0
- package/build/types/services/ReferencesService.d.ts +2 -2
- package/build/types/services/RenameService.d.ts +1 -1
- package/build/types/services/SemanticTokensService.d.ts +2 -2
- package/build/types/services/signature-help/SignatureWithParameters.d.ts +3 -1
- package/build/types/services/source-generation/SourceGenerationService.d.ts +2 -2
- package/build/types/services/workspace/ClientTrackedSourceFiles.d.ts +5 -5
- package/build/types/services/workspace/CompilationController.d.ts +3 -3
- package/build/types/services/workspace/FileSystemTreeProviderBasedOnWatchedFileSystem.d.ts +4 -4
- package/build/types/services/workspace/ManuallyUpdatedFileSystemTreeProvider.d.ts +4 -4
- package/build/types/services/workspace/Workspace.d.ts +3 -3
- package/build/types/services/workspace/WorkspaceFiles.d.ts +7 -7
- package/build/types/tree/NodeKind.d.ts +71 -70
- package/build/types/tree/Nodes.d.ts +25 -9
- package/build/types/tree/SyntaxFactory.d.ts +1 -2
- package/build/types/tree/TokenKind.d.ts +3 -71
- package/build/types/tree/Utils.d.ts +2 -2
- package/build/types/ts-interop/Entities.d.ts +0 -4
- package/build/types/ts-interop/TsInteropContext.d.ts +0 -1
- package/package.json +2 -2
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-WQJII6CO.js";
|
|
5
|
+
import "./chunk-X6VSO3OR.js";
|
|
6
6
|
import {
|
|
7
7
|
__async
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-F62D5WPV.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-X6VSO3OR.js";
|
|
4
4
|
import {
|
|
5
5
|
AccessKind,
|
|
6
6
|
AccessedFunctionParameter,
|
|
@@ -144,6 +144,7 @@ import {
|
|
|
144
144
|
NameFlags,
|
|
145
145
|
NestedFunctionDeclarationEntity,
|
|
146
146
|
NodeModulesDirectoryName,
|
|
147
|
+
NodeOrDiagnosticLocation,
|
|
147
148
|
NodeTypeUtils,
|
|
148
149
|
OperatorDeclarationEntity,
|
|
149
150
|
OperatorKind,
|
|
@@ -346,7 +347,7 @@ import {
|
|
|
346
347
|
withoutQuotes,
|
|
347
348
|
withoutTemplateQuotes,
|
|
348
349
|
yieldTask
|
|
349
|
-
} from "../chunk-
|
|
350
|
+
} from "../chunk-F62D5WPV.js";
|
|
350
351
|
export {
|
|
351
352
|
AccessKind,
|
|
352
353
|
AccessedFunctionParameter,
|
|
@@ -490,6 +491,7 @@ export {
|
|
|
490
491
|
NameFlags,
|
|
491
492
|
NestedFunctionDeclarationEntity,
|
|
492
493
|
NodeModulesDirectoryName,
|
|
494
|
+
NodeOrDiagnosticLocation,
|
|
493
495
|
NodeTypeUtils,
|
|
494
496
|
OperatorDeclarationEntity,
|
|
495
497
|
OperatorKind,
|
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-WQJII6CO.js";
|
|
10
|
+
import "../chunk-X6VSO3OR.js";
|
|
11
|
+
import "../chunk-F62D5WPV.js";
|
|
12
12
|
export {
|
|
13
13
|
CommandLineCompiler,
|
|
14
14
|
FileSystemUri,
|