@artel/artc 0.6.25216 → 0.6.25217

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 (39) hide show
  1. package/build/Cli.js +3 -3
  2. package/build/api/Api.js +23 -9
  3. package/build/api/ApiNodeJS.js +3 -3
  4. package/build/api/ApiServices.js +290 -337
  5. package/build/{chunk-O7AXOZXA.js → chunk-CMPXXHBQ.js} +3 -3
  6. package/build/{chunk-6RYP5SET.js → chunk-HN3XZZQX.js} +3 -3
  7. package/build/{chunk-TJG64G2K.js → chunk-TXAEJ2GI.js} +3397 -2484
  8. package/build/types/analysis/Analyzer.d.ts +163 -159
  9. package/build/types/analysis/CallArgumentToParameterMatchResult.d.ts +3 -4
  10. package/build/types/analysis/DiagnosticCollector.d.ts +1 -0
  11. package/build/types/analysis/IndexedAccessExpressionMeaning.d.ts +12 -7
  12. package/build/types/analysis/SourceFileMembers.d.ts +11 -1
  13. package/build/types/diagnostic/DiagnosticCode.d.ts +107 -103
  14. package/build/types/emitter/EmitterContext.d.ts +9 -0
  15. package/build/types/emitter/Entities.d.ts +8 -2
  16. package/build/types/emitter/IrToJs.d.ts +0 -1
  17. package/build/types/emitter/Transformer.d.ts +2 -3
  18. package/build/types/emitter/ir/LoweringOptions.d.ts +3 -1
  19. package/build/types/emitter/ir/LoweringState.d.ts +24 -0
  20. package/build/types/emitter/ir/Nodes.d.ts +74 -85
  21. package/build/types/emitter/ir/types.d.ts +3 -2
  22. package/build/types/entities/AliasTypeEntity.d.ts +1 -1
  23. package/build/types/entities/DereferenceOperatorEntity.d.ts +7 -0
  24. package/build/types/entities/IndexerEntity.d.ts +7 -0
  25. package/build/types/entities/MethodTypeEntity.d.ts +9 -1
  26. package/build/types/entities/StructuredTypeEntity.d.ts +11 -3
  27. package/build/types/entities/TypeParameterEntity.d.ts +1 -1
  28. package/build/types/entities/VariantTypeEntity.d.ts +9 -1
  29. package/build/types/parser/Scanner.d.ts +0 -6
  30. package/build/types/parser/UnescapeText.d.ts +1 -1
  31. package/build/types/services/DisplayService.d.ts +201 -162
  32. package/build/types/services/signature-help/SignatureWithValueParameters.d.ts +1 -3
  33. package/build/types/tree/NodeKind.d.ts +85 -86
  34. package/build/types/tree/green/Nodes.d.ts +4 -13
  35. package/build/types/tree/red/Nodes.d.ts +5 -19
  36. package/build/types/ts-interop/Entities.d.ts +28 -8
  37. package/build/types/types/MethodType.d.ts +2 -2
  38. package/build/types/types/VariantType.d.ts +2 -2
  39. package/package.json +1 -1
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  Compiler
3
- } from "./chunk-6RYP5SET.js";
3
+ } from "./chunk-HN3XZZQX.js";
4
4
  import {
5
5
  ArtelVersion,
6
6
  Cached,
@@ -14,7 +14,7 @@ import {
14
14
  __async,
15
15
  performanceMeasurementStageNames,
16
16
  performanceMeasurementStages
17
- } from "./chunk-TJG64G2K.js";
17
+ } from "./chunk-TXAEJ2GI.js";
18
18
 
19
19
  // source/executor/FileSystemUri.ts
20
20
  import { platform } from "os";
@@ -216,7 +216,7 @@ var NodeCompiler = class {
216
216
  const standardLibraryUri = yield this.findStandardTypeScriptLibrary(nodeModulesSearchPaths, defaultTsLibraryPath);
217
217
  if (standardLibraryUri === void 0) {
218
218
  const diagnostic = new Diagnostic(DiagnosticData.withCode(
219
- 109 /* CanNotFindTsLibDirectoryBaseSearchPaths0 */,
219
+ 113 /* CanNotFindTsLibDirectoryBaseSearchPaths0 */,
220
220
  [nodeModulesSearchPaths.map((p) => `'${p}'`).join(", ")]
221
221
  ), void 0);
222
222
  diagnostics?.addDiagnostic(diagnostic);
@@ -10,7 +10,7 @@ import {
10
10
  WellKnownDeclarationsLoadError,
11
11
  __async,
12
12
  createTsInteropInputsForCompilation
13
- } from "./chunk-TJG64G2K.js";
13
+ } from "./chunk-TXAEJ2GI.js";
14
14
 
15
15
  // source/executor/Compiler.ts
16
16
  var Compiler = class {
@@ -68,7 +68,7 @@ var Compiler = class {
68
68
  return __async(this, null, function* () {
69
69
  if (analyzer.compilation.mainPackage === void 0) {
70
70
  _diagnostics?.addDiagnostic(new Diagnostic(DiagnosticData.withCode(
71
- 111 /* ProgramWithoutMainPackageCanNotBeCompiled */
71
+ 115 /* ProgramWithoutMainPackageCanNotBeCompiled */
72
72
  ), void 0));
73
73
  return void 0;
74
74
  }
@@ -82,7 +82,7 @@ var Compiler = class {
82
82
  return __async(this, null, function* () {
83
83
  if (analyzer.compilation.mainPackage === void 0) {
84
84
  _diagnostics?.addDiagnostic(new Diagnostic(DiagnosticData.withCode(
85
- 111 /* ProgramWithoutMainPackageCanNotBeCompiled */
85
+ 115 /* ProgramWithoutMainPackageCanNotBeCompiled */
86
86
  ), void 0));
87
87
  return "";
88
88
  }