@artel/artc 0.9.26024-pre-release → 0.9.26025-pre-release
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 +186 -83
- package/build/{chunk-QDMG64FZ.js → chunk-2WJO6BHA.js} +1 -1
- package/build/{chunk-3L2UK67C.js → chunk-3ZZBPFOL.js} +2 -2
- package/build/{chunk-DFS2YK5P.js → chunk-SI24BVXL.js} +2609 -2995
- package/build/types/analysis/{m/ArgumentsToParametersMatcher.d.ts → ArgumentsToParametersMatcher.d.ts} +3 -12
- package/build/types/analysis/BaseOverloadResolver.d.ts +77 -0
- package/build/types/analysis/a/OverloadResolver.d.ts +10 -58
- package/build/types/analysis/a/SourceMatcherArgument.d.ts +12 -0
- package/build/types/analysis/m/OverloadResolver.d.ts +10 -58
- package/build/types/analysis/m/SourceMatcherArgument.d.ts +12 -0
- package/build/types/entities/EntityLocalizationContext.d.ts +5 -0
- package/build/types/entities/interfaces/VariableEntity.d.ts +6 -1
- package/build/types/services/CustomRequests.d.ts +10 -0
- package/build/types/services/LanguageServer.d.ts +2 -0
- package/build/types/services/a/HoverService.d.ts +1 -0
- package/build/types/services/common/hover/HoverService.d.ts +2 -0
- package/build/types/services/common/hover/Types.d.ts +2 -4
- package/build/types/services/common/node-semantic-info/NodeSemanticInfoService.d.ts +1 -1
- package/build/types/services/common/node-semantic-info/Types.d.ts +4 -14
- package/build/types/services/m/HoverService.d.ts +1 -0
- package/build/types/types/TypeMembers.d.ts +2 -1
- package/package.json +1 -1
- package/build/types/analysis/a/ArgumentsToParametersMatcher.d.ts +0 -40
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-3ZZBPFOL.js";
|
|
5
|
+
import "./chunk-2WJO6BHA.js";
|
|
6
6
|
import {
|
|
7
7
|
__async
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-SI24BVXL.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-2WJO6BHA.js";
|
|
4
4
|
import {
|
|
5
5
|
AccessKind,
|
|
6
6
|
AccessedFunction_entity,
|
|
@@ -60,6 +60,7 @@ import {
|
|
|
60
60
|
DefaultConstructorEntity,
|
|
61
61
|
DefaultConstructorEntityInfo,
|
|
62
62
|
DefaultConstructorParameterForBaseConstructorInfo,
|
|
63
|
+
DefaultConstructorParameterSpecialVariableEntityInfo,
|
|
63
64
|
DefaultDialect,
|
|
64
65
|
DefaultLocale,
|
|
65
66
|
DefaultNamesOfDirectoriesToIgnore,
|
|
@@ -309,7 +310,7 @@ import {
|
|
|
309
310
|
withoutQuotes,
|
|
310
311
|
withoutTemplateQuotes,
|
|
311
312
|
yieldTask
|
|
312
|
-
} from "../chunk-
|
|
313
|
+
} from "../chunk-SI24BVXL.js";
|
|
313
314
|
export {
|
|
314
315
|
AccessKind,
|
|
315
316
|
AccessedFunction_entity,
|
|
@@ -370,6 +371,7 @@ export {
|
|
|
370
371
|
DefaultConstructorEntity,
|
|
371
372
|
DefaultConstructorEntityInfo,
|
|
372
373
|
DefaultConstructorParameterForBaseConstructorInfo,
|
|
374
|
+
DefaultConstructorParameterSpecialVariableEntityInfo,
|
|
373
375
|
DefaultDialect,
|
|
374
376
|
DefaultLocale,
|
|
375
377
|
DefaultNamesOfDirectoriesToIgnore,
|
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-3ZZBPFOL.js";
|
|
10
|
+
import "../chunk-2WJO6BHA.js";
|
|
11
|
+
import "../chunk-SI24BVXL.js";
|
|
12
12
|
export {
|
|
13
13
|
CommandLineCompiler,
|
|
14
14
|
FileSystemUri,
|