@artel/artc 0.6.25227 → 0.6.25228

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.
Files changed (32) hide show
  1. package/build/Cli.js +3 -3
  2. package/build/api/Api.js +4 -2
  3. package/build/api/ApiNodeJS.js +3 -3
  4. package/build/api/ApiServices.js +246 -232
  5. package/build/{chunk-NOECPQMV.js → chunk-5GSDYTF6.js} +2178 -1668
  6. package/build/{chunk-74TFH7TE.js → chunk-F5OW64UA.js} +3 -3
  7. package/build/{chunk-VD6OPILI.js → chunk-FHJJX7JY.js} +3 -3
  8. package/build/types/analysis/Analyzer.d.ts +9 -2
  9. package/build/types/analysis/DeclarationsUsageCounter.d.ts +8 -3
  10. package/build/types/analysis/DiagnosticCollector.d.ts +9 -2
  11. package/build/types/analysis/NodeTypeUtils.d.ts +2 -2
  12. package/build/types/analysis/PackageMemberNameConflictsValidator.d.ts +24 -0
  13. package/build/types/analysis/SourceFileMembers.d.ts +6 -1
  14. package/build/types/analysis/SourcePackageMembersCreator.d.ts +2 -1
  15. package/build/types/analysis/TypeInferrer.d.ts +2 -0
  16. package/build/types/analysis/control-flow/GraphBuilder.d.ts +5 -2
  17. package/build/types/analysis/semantic-context/SemanticContext.d.ts +1 -1
  18. package/build/types/analysis/semantic-context/SemanticContextValidatingNameConflicts.d.ts +1 -80
  19. package/build/types/analysis/semantic-context/SourceFileSemanticContext.d.ts +1 -1
  20. package/build/types/analysis/semantic-context/SubprogramBodyAndParametersSemanticContext.d.ts +89 -0
  21. package/build/types/analysis/semantic-context/SubprogramSemanticContext.d.ts +0 -8
  22. package/build/types/analysis/semantic-context/TypeSemanticContext.d.ts +9 -24
  23. package/build/types/analysis/semantic-context/index.d.ts +1 -0
  24. package/build/types/common/Cached.d.ts +1 -0
  25. package/build/types/diagnostic/DiagnosticCode.d.ts +87 -72
  26. package/build/types/emitter/IrBuilder.d.ts +0 -1
  27. package/build/types/entities/VariableEntity.d.ts +13 -0
  28. package/build/types/entities/index.d.ts +4 -0
  29. package/build/types/tree/NodeKind.d.ts +81 -82
  30. package/build/types/tree/green/Nodes.d.ts +2 -20
  31. package/build/types/tree/red/Nodes.d.ts +3 -18
  32. 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-VD6OPILI.js";
5
- import "./chunk-74TFH7TE.js";
4
+ } from "./chunk-FHJJX7JY.js";
5
+ import "./chunk-F5OW64UA.js";
6
6
  import {
7
7
  __async
8
- } from "./chunk-NOECPQMV.js";
8
+ } from "./chunk-5GSDYTF6.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-74TFH7TE.js";
3
+ } from "../chunk-F5OW64UA.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-NOECPQMV.js";
316
+ } from "../chunk-5GSDYTF6.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,
@@ -6,9 +6,9 @@ import {
6
6
  PhysicalFileSystem,
7
7
  PhysicalTypeScriptLibrariesProvider,
8
8
  PrintingDiagnosticAcceptor
9
- } from "../chunk-VD6OPILI.js";
10
- import "../chunk-74TFH7TE.js";
11
- import "../chunk-NOECPQMV.js";
9
+ } from "../chunk-FHJJX7JY.js";
10
+ import "../chunk-F5OW64UA.js";
11
+ import "../chunk-5GSDYTF6.js";
12
12
  export {
13
13
  CommandLineCompiler,
14
14
  FileSystemUri,