@artel/artc 0.6.25227 → 0.6.25229
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 +297 -284
- package/build/{chunk-74TFH7TE.js → chunk-2FHW6RUS.js} +3 -3
- package/build/{chunk-VD6OPILI.js → chunk-4UBNOTKC.js} +3 -3
- package/build/{chunk-NOECPQMV.js → chunk-6YPLDA76.js} +2612 -2072
- package/build/types/analysis/Analyzer.d.ts +12 -5
- package/build/types/analysis/DeclarationsUsageCounter.d.ts +8 -3
- package/build/types/analysis/DiagnosticCollector.d.ts +9 -2
- package/build/types/analysis/ModifierFlags.d.ts +5 -6
- package/build/types/analysis/NodeTypeUtils.d.ts +2 -2
- package/build/types/analysis/PackageMemberNameConflictsValidator.d.ts +24 -0
- package/build/types/analysis/SourceFileMembers.d.ts +6 -1
- package/build/types/analysis/SourcePackageMembersCreator.d.ts +2 -1
- package/build/types/analysis/TypeInferrer.d.ts +2 -0
- package/build/types/analysis/control-flow/GraphBuilder.d.ts +5 -2
- package/build/types/analysis/semantic-context/SemanticContext.d.ts +1 -1
- package/build/types/analysis/semantic-context/SemanticContextValidatingNameConflicts.d.ts +1 -80
- package/build/types/analysis/semantic-context/SourceFileSemanticContext.d.ts +1 -1
- package/build/types/analysis/semantic-context/SubprogramBodyAndParametersSemanticContext.d.ts +89 -0
- package/build/types/analysis/semantic-context/SubprogramSemanticContext.d.ts +0 -8
- package/build/types/analysis/semantic-context/TypeSemanticContext.d.ts +9 -24
- package/build/types/analysis/semantic-context/index.d.ts +1 -0
- package/build/types/common/Cached.d.ts +1 -0
- package/build/types/diagnostic/DiagnosticCode.d.ts +86 -72
- package/build/types/emitter/Entities.d.ts +4 -4
- package/build/types/emitter/IrBuilder.d.ts +0 -1
- package/build/types/entities/DereferenceOperatorEntity.d.ts +4 -4
- package/build/types/entities/FunctionEntity.d.ts +8 -8
- package/build/types/entities/IndexerEntity.d.ts +4 -4
- package/build/types/entities/OperatorEntity.d.ts +4 -4
- package/build/types/entities/VariableEntity.d.ts +25 -12
- package/build/types/entities/index.d.ts +4 -0
- package/build/types/project/SourcePackage.d.ts +3 -1
- package/build/types/project/configuration/ConfigurationConverter.d.ts +1 -1
- package/build/types/project/configuration/types/PackageConfigurationEn.d.ts +2 -0
- package/build/types/project/configuration/types/PackageConfigurationRu.d.ts +2 -0
- package/build/types/tree/KeywordKind.d.ts +21 -22
- package/build/types/tree/NodeKind.d.ts +81 -82
- package/build/types/tree/green/BaseNode.d.ts +3 -1
- package/build/types/tree/green/Nodes.d.ts +3 -21
- package/build/types/tree/red/BaseNode.d.ts +2 -1
- package/build/types/tree/red/Nodes.d.ts +4 -19
- package/build/types/ts-interop/Entities.d.ts +12 -12
- package/package.json +1 -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-4UBNOTKC.js";
|
5
|
+
import "./chunk-2FHW6RUS.js";
|
6
6
|
import {
|
7
7
|
__async
|
8
|
-
} from "./chunk-
|
8
|
+
} from "./chunk-6YPLDA76.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-2FHW6RUS.js";
|
4
4
|
import {
|
5
5
|
AccessKind,
|
6
6
|
AccessedFunctionValueParameter,
|
@@ -221,6 +221,7 @@ import {
|
|
221
221
|
TsInteropInputs,
|
222
222
|
TypeAssignabilityFlags,
|
223
223
|
TypeEntityKind,
|
224
|
+
TypeMemberEntity,
|
224
225
|
TypeMemberEntityContainer,
|
225
226
|
TypeMemberLookup,
|
226
227
|
TypeMemberLookupOptions,
|
@@ -312,7 +313,7 @@ import {
|
|
312
313
|
withoutQuotes,
|
313
314
|
withoutTemplateQuotes,
|
314
315
|
yieldExecution
|
315
|
-
} from "../chunk-
|
316
|
+
} from "../chunk-6YPLDA76.js";
|
316
317
|
export {
|
317
318
|
AccessKind,
|
318
319
|
AccessedFunctionValueParameter,
|
@@ -530,6 +531,7 @@ export {
|
|
530
531
|
TsInteropInputs,
|
531
532
|
TypeAssignabilityFlags,
|
532
533
|
TypeEntityKind,
|
534
|
+
TypeMemberEntity,
|
533
535
|
TypeMemberEntityContainer,
|
534
536
|
TypeMemberLookup,
|
535
537
|
TypeMemberLookupOptions,
|
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-4UBNOTKC.js";
|
10
|
+
import "../chunk-2FHW6RUS.js";
|
11
|
+
import "../chunk-6YPLDA76.js";
|
12
12
|
export {
|
13
13
|
CommandLineCompiler,
|
14
14
|
FileSystemUri,
|