@artel/artc 0.9.26029-pre-release → 0.9.26030-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 +6 -4
- package/build/api/ApiNodeJS.js +3 -3
- package/build/api/ApiServices.js +372 -230
- package/build/{chunk-RE36QMI4.js → chunk-HEQJNVVU.js} +1 -1
- package/build/{chunk-EFDSEPVX.js → chunk-SRTMMV6H.js} +2 -2
- package/build/{chunk-LKJKS5OJ.js → chunk-ZXXSGQS4.js} +1950 -1463
- package/build/types/analysis/Analyzer.d.ts +2 -1
- package/build/types/analysis/TypeMemberLookup.d.ts +17 -8
- package/build/types/analysis/WellKnownDeclarations.d.ts +3 -0
- package/build/types/analysis/a/Analyzer.d.ts +7 -7
- package/build/types/analysis/a/ArgumentToParameterMatchResult.d.ts +2 -1
- package/build/types/analysis/a/BaseConstructorCallStatementMeaning.d.ts +42 -0
- package/build/types/analysis/a/BaseExpressionMeaning.d.ts +7 -56
- package/build/types/analysis/a/OwnAndBaseConstructorCallsChecker.d.ts +2 -3
- package/build/types/analysis/a/{OwnConstructorCallExpressionMeaning.d.ts → OwnConstructorCallStatementMeaning.d.ts} +1 -1
- package/build/types/analysis/a/SourceFileAnalyzer.d.ts +2 -1
- package/build/types/analysis/a/TypeMemberLookup.d.ts +3 -1
- package/build/types/analysis/m/Analyzer.d.ts +1 -1
- package/build/types/analysis/m/OwnAndBaseConstructorCallsChecker.d.ts +0 -1
- package/build/types/analysis/m/TypeMemberLookup.d.ts +3 -1
- package/build/types/emitter/Entities.d.ts +4 -3
- package/build/types/emitter/IrBuilderA.d.ts +2 -1
- package/build/types/entities/TypeEntityMembers.d.ts +8 -3
- package/build/types/entities/TypeMemberEntity.d.ts +3 -1
- package/build/types/entities/TypeMemberKindFlags.d.ts +12 -11
- package/build/types/entities/interfaces/AliasTypeEntity.d.ts +1 -0
- package/build/types/entities/interfaces/BaseDestructorEntity.d.ts +1 -1
- package/build/types/entities/interfaces/BaseNamedConstructorEntity.d.ts +18 -0
- package/build/types/entities/interfaces/BaseOperatorEntity.d.ts +1 -1
- package/build/types/entities/interfaces/{BaseConstructorEntity.d.ts → BaseOrdinaryConstructorEntity.d.ts} +2 -2
- package/build/types/entities/interfaces/BaseOrdinaryMethodEntity.d.ts +1 -1
- package/build/types/entities/interfaces/BaseTypeMemberAccessorEntity.d.ts +1 -1
- package/build/types/entities/interfaces/FunctionEntity.d.ts +6 -5
- package/build/types/entities/interfaces/a/NamedConstructorEntityA.d.ts +11 -0
- package/build/types/entities/interfaces/a/{ConstructorEntityA.d.ts → OrdinaryConstructorEntityA.d.ts} +2 -2
- package/build/types/entities/interfaces/a/index.d.ts +2 -1
- package/build/types/entities/interfaces/index.d.ts +2 -1
- package/build/types/entities/interfaces/m/OrdinaryConstructorEntityM.d.ts +18 -0
- package/build/types/entities/interfaces/m/index.d.ts +1 -1
- package/build/types/entities/intrinsic/IntrinsicConstructorEntity.d.ts +3 -3
- package/build/types/entities/source/a/SourceAliasTypeEntity.d.ts +1 -0
- package/build/types/entities/source/a/SourceConstructorEntity.d.ts +33 -3
- package/build/types/entities/source/m/SourceAliasTypeEntity.d.ts +1 -0
- package/build/types/entities/source/m/SourceConstructorEntity.d.ts +34 -4
- package/build/types/entities/translated/TranslatedAliasTypeEntity.d.ts +1 -0
- package/build/types/entities/translated/source/a/SourceTranslatedConstructorEntity.d.ts +11 -1
- package/build/types/services/a/CompletionService.d.ts +3 -2
- package/build/types/services/a/DisplayService.d.ts +1 -0
- package/build/types/services/a/NodeSemanticInfo.d.ts +2 -1
- package/build/types/services/a/signature-help/SignatureWithParameters.d.ts +5 -3
- package/build/types/services/common/references/Types.d.ts +1 -1
- package/build/types/tree/a/NodeKind.d.ts +74 -73
- package/build/types/tree/a/Nodes.d.ts +47 -24
- package/build/types/tree/a/SyntaxFactory.d.ts +1 -1
- package/build/types/tree/m/WellKnownTagFlags.d.ts +2 -1
- package/build/types/ts-interop/Entities.d.ts +3 -3
- package/build/types/ts-interop/TypeEntities.d.ts +2 -0
- package/build/types/types/AliasType.d.ts +1 -0
- package/package.json +1 -1
- package/build/types/entities/interfaces/m/ConstructorEntityM.d.ts +0 -10
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-SRTMMV6H.js";
|
|
5
|
+
import "./chunk-HEQJNVVU.js";
|
|
6
6
|
import {
|
|
7
7
|
__async
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-ZXXSGQS4.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-HEQJNVVU.js";
|
|
4
4
|
import {
|
|
5
5
|
AccessKind,
|
|
6
6
|
AccessedFunction_entity,
|
|
@@ -19,14 +19,15 @@ import {
|
|
|
19
19
|
ArtelSourceFileExtensions,
|
|
20
20
|
ArtelVersion,
|
|
21
21
|
BackingSpecialVariableEntityInfo,
|
|
22
|
-
BaseConstructorEntity,
|
|
23
22
|
BaseDereferenceOperatorEntity,
|
|
24
23
|
BaseDestructorEntity,
|
|
25
24
|
BaseFieldEntity,
|
|
26
25
|
BaseIndexerEntity,
|
|
27
26
|
BaseKeywordPart,
|
|
28
27
|
BaseMethodEntity,
|
|
28
|
+
BaseNamedConstructorEntity,
|
|
29
29
|
BaseOperatorEntity,
|
|
30
|
+
BaseOrdinaryConstructorEntity,
|
|
30
31
|
BaseOrdinaryMethodEntity,
|
|
31
32
|
BaseOrdinaryPackageFunctionEntity,
|
|
32
33
|
BasePackageMemberAccessorEntity,
|
|
@@ -307,7 +308,7 @@ import {
|
|
|
307
308
|
withoutQuotes,
|
|
308
309
|
withoutTemplateQuotes,
|
|
309
310
|
yieldTask
|
|
310
|
-
} from "../chunk-
|
|
311
|
+
} from "../chunk-ZXXSGQS4.js";
|
|
311
312
|
export {
|
|
312
313
|
AccessKind,
|
|
313
314
|
AccessedFunction_entity,
|
|
@@ -326,14 +327,15 @@ export {
|
|
|
326
327
|
ArtelSourceFileExtensions,
|
|
327
328
|
ArtelVersion,
|
|
328
329
|
BackingSpecialVariableEntityInfo,
|
|
329
|
-
BaseConstructorEntity,
|
|
330
330
|
BaseDereferenceOperatorEntity,
|
|
331
331
|
BaseDestructorEntity,
|
|
332
332
|
BaseFieldEntity,
|
|
333
333
|
BaseIndexerEntity,
|
|
334
334
|
BaseKeywordPart,
|
|
335
335
|
BaseMethodEntity,
|
|
336
|
+
BaseNamedConstructorEntity,
|
|
336
337
|
BaseOperatorEntity,
|
|
338
|
+
BaseOrdinaryConstructorEntity,
|
|
337
339
|
BaseOrdinaryMethodEntity,
|
|
338
340
|
BaseOrdinaryPackageFunctionEntity,
|
|
339
341
|
BasePackageMemberAccessorEntity,
|
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-SRTMMV6H.js";
|
|
10
|
+
import "../chunk-HEQJNVVU.js";
|
|
11
|
+
import "../chunk-ZXXSGQS4.js";
|
|
12
12
|
export {
|
|
13
13
|
CommandLineCompiler,
|
|
14
14
|
FileSystemUri,
|