@artel/artc 0.6.25223 → 0.6.25224

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 (43) hide show
  1. package/build/Cli.js +3 -3
  2. package/build/api/Api.js +6 -2
  3. package/build/api/ApiNodeJS.js +3 -3
  4. package/build/api/ApiServices.js +627 -498
  5. package/build/{chunk-DZNNWICP.js → chunk-24QZJOMF.js} +4575 -3937
  6. package/build/{chunk-AX3LQ2CF.js → chunk-62KHK23H.js} +2 -2
  7. package/build/{chunk-LG4Z4SWO.js → chunk-Y6DODJCG.js} +1 -1
  8. package/build/types/analysis/AnalyzedTranslationPackage.d.ts +1 -0
  9. package/build/types/analysis/Analyzer.d.ts +11 -5
  10. package/build/types/analysis/DiagnosticCollector.d.ts +1 -1
  11. package/build/types/analysis/ImportedPackageNameTree.d.ts +1 -0
  12. package/build/types/analysis/NamedTypeResolver.d.ts +5 -1
  13. package/build/types/analysis/NamedTypeSpecifierResolver.d.ts +4 -1
  14. package/build/types/analysis/PropertyAccessExpressionMeaning.d.ts +8 -2
  15. package/build/types/analysis/TagMeaning.d.ts +4 -1
  16. package/build/types/analysis/TypeNarrower.d.ts +21 -21
  17. package/build/types/analysis/Utils.d.ts +12 -0
  18. package/build/types/analysis/control-flow/GraphBuilder.d.ts +43 -0
  19. package/build/types/analysis/{ControlFlowGraphVisualizer.d.ts → control-flow/GraphVisualizer.d.ts} +3 -3
  20. package/build/types/analysis/control-flow/NarrowableExpression.d.ts +5 -0
  21. package/build/types/analysis/control-flow/Nodes.d.ts +91 -0
  22. package/build/types/analysis/control-flow/index.d.ts +4 -0
  23. package/build/types/common/HelperPhrases.d.ts +3 -2
  24. package/build/types/diagnostic/DiagnosticCode.d.ts +5 -5
  25. package/build/types/emitter/Entities.d.ts +5 -4
  26. package/build/types/emitter/ir/Nodes.d.ts +2 -2
  27. package/build/types/services/CompletionService.d.ts +0 -1
  28. package/build/types/services/DisplayService.d.ts +11 -8
  29. package/build/types/services/NodeSemanticInfo.d.ts +11 -6
  30. package/build/types/services/source-generation/EntityToSyntax.d.ts +1 -0
  31. package/build/types/tree/NodeKind.d.ts +146 -144
  32. package/build/types/tree/green/Nodes.d.ts +24 -5
  33. package/build/types/tree/green/SyntaxFactory.d.ts +1 -0
  34. package/build/types/tree/green/SyntaxToCode.d.ts +5 -1
  35. package/build/types/tree/red/Nodes.d.ts +30 -5
  36. package/build/types/ts-interop/TsInteropContext.d.ts +1 -0
  37. package/build/types/types/IntersectionType.d.ts +20 -0
  38. package/build/types/types/ParameterType.d.ts +6 -3
  39. package/build/types/types/Type.d.ts +2 -1
  40. package/build/types/types/TypeFactory.d.ts +4 -1
  41. package/build/types/types/index.d.ts +1 -0
  42. package/package.json +1 -1
  43. package/build/types/analysis/ControlFlowGraphBuilder.d.ts +0 -129
package/build/Cli.js CHANGED
@@ -1,11 +1,11 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  CommandLineCompiler
4
- } from "./chunk-AX3LQ2CF.js";
5
- import "./chunk-LG4Z4SWO.js";
4
+ } from "./chunk-62KHK23H.js";
5
+ import "./chunk-Y6DODJCG.js";
6
6
  import {
7
7
  __async
8
- } from "./chunk-DZNNWICP.js";
8
+ } from "./chunk-24QZJOMF.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-LG4Z4SWO.js";
3
+ } from "../chunk-Y6DODJCG.js";
4
4
  import {
5
5
  AccessKind,
6
6
  AccessedMethodValueParameter,
@@ -71,6 +71,8 @@ import {
71
71
  EntityLocalizationHelper,
72
72
  EntityNaming_anonymous,
73
73
  EntityNaming_named,
74
+ EntityOrPackageNameTreeNode_entity,
75
+ EntityOrPackageNameTreeNode_node,
74
76
  EnumerationVariableDeclarationEntity,
75
77
  ErrorVariableDeclarationEntity,
76
78
  ExpressionDenotesMethodCheckResult,
@@ -332,7 +334,7 @@ import {
332
334
  withoutQuotes,
333
335
  withoutTemplateQuotes,
334
336
  yieldExecution
335
- } from "../chunk-DZNNWICP.js";
337
+ } from "../chunk-24QZJOMF.js";
336
338
  export {
337
339
  AccessKind,
338
340
  AccessedMethodValueParameter,
@@ -404,6 +406,8 @@ export {
404
406
  EntityLocalizationHelper,
405
407
  EntityNaming_anonymous,
406
408
  EntityNaming_named,
409
+ EntityOrPackageNameTreeNode_entity,
410
+ EntityOrPackageNameTreeNode_node,
407
411
  EnumerationVariableDeclarationEntity,
408
412
  ErrorVariableDeclarationEntity,
409
413
  ExpressionDenotesMethodCheckResult,
@@ -6,9 +6,9 @@ import {
6
6
  PhysicalFileSystem,
7
7
  PhysicalTypeScriptLibrariesProvider,
8
8
  PrintingDiagnosticAcceptor
9
- } from "../chunk-AX3LQ2CF.js";
10
- import "../chunk-LG4Z4SWO.js";
11
- import "../chunk-DZNNWICP.js";
9
+ } from "../chunk-62KHK23H.js";
10
+ import "../chunk-Y6DODJCG.js";
11
+ import "../chunk-24QZJOMF.js";
12
12
  export {
13
13
  CommandLineCompiler,
14
14
  FileSystemUri,