@artel/artc 0.9.26025-pre-release → 0.9.26028-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 +2 -2
- package/build/api/ApiNodeJS.js +3 -3
- package/build/api/ApiServices.js +222 -233
- package/build/{chunk-2WJO6BHA.js → chunk-JRCZXF6T.js} +1 -1
- package/build/{chunk-3ZZBPFOL.js → chunk-JZ72OQ57.js} +2 -2
- package/build/{chunk-SI24BVXL.js → chunk-QJFQXSRI.js} +3100 -2769
- package/build/types/analysis/AccessedFunction.d.ts +7 -2
- package/build/types/analysis/AccessedFunctionParameter.d.ts +7 -1
- package/build/types/analysis/Analyzer.d.ts +2 -1
- package/build/types/analysis/ArgumentsToParametersMatcher.d.ts +7 -7
- package/build/types/analysis/BaseOverloadResolver.d.ts +65 -12
- package/build/types/analysis/TypeMemberLookup.d.ts +1 -0
- package/build/types/analysis/WellKnownDeclarations.d.ts +88 -88
- package/build/types/analysis/a/ArgumentToParameterMatchResult.d.ts +3 -3
- package/build/types/analysis/a/AutotypeCallExpressionMeaning.d.ts +3 -2
- package/build/types/analysis/a/BaseExpressionMeaning.d.ts +3 -2
- package/build/types/analysis/a/CallExpressionMeaning.d.ts +12 -6
- package/build/types/analysis/a/ConstructorCallResolver.d.ts +20 -7
- package/build/types/analysis/a/FunctionAccessResolver.d.ts +19 -5
- package/build/types/analysis/a/IndexedAccessExpressionMeaning.d.ts +12 -4
- package/build/types/analysis/a/OverloadResolver.d.ts +5 -5
- package/build/types/analysis/a/OwnConstructorCallExpressionMeaning.d.ts +3 -2
- package/build/types/analysis/a/SourceFileAnalyzer.d.ts +2 -2
- package/build/types/analysis/a/TagMeaning.d.ts +6 -4
- package/build/types/analysis/m/Analyzer.d.ts +13 -6
- package/build/types/analysis/m/ArgumentToParameterMatchResult.d.ts +3 -3
- package/build/types/analysis/m/CallExpressionMeaning.d.ts +12 -6
- package/build/types/analysis/m/ConstructorCallResolver.d.ts +20 -7
- package/build/types/analysis/m/FunctionAccessResolver.d.ts +19 -5
- package/build/types/analysis/m/IndexedAccessExpressionMeaning.d.ts +12 -4
- package/build/types/analysis/m/OverloadResolver.d.ts +4 -4
- package/build/types/analysis/m/SourceFileAnalyzer.d.ts +3 -3
- package/build/types/analysis/m/SourcePackageMembersCreator.d.ts +1 -1
- package/build/types/analysis/m/SourceTypeMembersCreator.d.ts +2 -2
- package/build/types/analysis/m/TagMeaning.d.ts +6 -4
- package/build/types/analysis/m/TreeQuery.d.ts +1 -6
- package/build/types/analysis/m/semantic-context/SemanticContextBuilder.d.ts +1 -1
- package/build/types/diagnostic/DiagnosticCode.d.ts +28 -19
- package/build/types/emitter/EntityMap.d.ts +1 -1
- package/build/types/emitter/IrBuilderM.d.ts +0 -1
- package/build/types/emitter/IrFactory.d.ts +1 -1
- package/build/types/entities/interfaces/AliasTypeEntity.d.ts +1 -1
- package/build/types/entities/interfaces/ReducedTypeEntity.d.ts +2 -1
- package/build/types/entities/source/m/SourceAliasTypeEntity.d.ts +5 -3
- package/build/types/entities/source/m/SourceConstructorEntity.d.ts +2 -2
- package/build/types/entities/source/m/SourceDestructorEntity.d.ts +2 -2
- package/build/types/entities/source/m/SourceFunctionEntity.d.ts +8 -8
- package/build/types/entities/source/m/SourceGetterEntity.d.ts +8 -8
- package/build/types/entities/source/m/SourceSetterEntity.d.ts +8 -8
- package/build/types/entities/source/m/SourceStructuredTypeEntity.d.ts +3 -3
- package/build/types/entities/source/m/SourceTypeExtensionEntity.d.ts +35 -0
- package/build/types/entities/source/m/SourceVariableEntity.d.ts +6 -6
- package/build/types/entities/source/m/SourceVariantTypeEntity.d.ts +2 -2
- package/build/types/entities/source/m/index.d.ts +1 -0
- package/build/types/services/a/DisplayService.d.ts +0 -1
- package/build/types/services/m/DisplayService.d.ts +2 -2
- package/build/types/tree/m/NodeKind.d.ts +64 -66
- package/build/types/tree/m/Nodes.d.ts +10 -43
- package/build/types/tree/m/SyntaxToCode.d.ts +0 -2
- package/build/types/tree/m/Types.d.ts +1 -1
- package/build/types/tree/m/Utils.d.ts +1 -3
- package/build/types/tree/m/WellKnownTagFlags.d.ts +23 -0
- package/build/types/tree/m/index.d.ts +1 -0
- package/build/types/types/TypeMembers.d.ts +12 -4
- package/package.json +1 -1
- package/build/types/analysis/a/SourceMatcherArgument.d.ts +0 -12
- package/build/types/analysis/m/ModifierFlags.d.ts +0 -20
- package/build/types/analysis/m/SourceMatcherArgument.d.ts +0 -12
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-JZ72OQ57.js";
|
|
5
|
+
import "./chunk-JRCZXF6T.js";
|
|
6
6
|
import {
|
|
7
7
|
__async
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-QJFQXSRI.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-JRCZXF6T.js";
|
|
4
4
|
import {
|
|
5
5
|
AccessKind,
|
|
6
6
|
AccessedFunction_entity,
|
|
@@ -310,7 +310,7 @@ import {
|
|
|
310
310
|
withoutQuotes,
|
|
311
311
|
withoutTemplateQuotes,
|
|
312
312
|
yieldTask
|
|
313
|
-
} from "../chunk-
|
|
313
|
+
} from "../chunk-QJFQXSRI.js";
|
|
314
314
|
export {
|
|
315
315
|
AccessKind,
|
|
316
316
|
AccessedFunction_entity,
|
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-JZ72OQ57.js";
|
|
10
|
+
import "../chunk-JRCZXF6T.js";
|
|
11
|
+
import "../chunk-QJFQXSRI.js";
|
|
12
12
|
export {
|
|
13
13
|
CommandLineCompiler,
|
|
14
14
|
FileSystemUri,
|