@artel/artc 0.6.25264 → 0.6.25266

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 (52) hide show
  1. package/build/Cli.js +3 -3
  2. package/build/api/Api.js +8 -10
  3. package/build/api/ApiNodeJS.js +3 -3
  4. package/build/api/ApiServices.js +327 -341
  5. package/build/{chunk-3V2UPAG3.js → chunk-2Y343AG7.js} +1 -1
  6. package/build/{chunk-WTJNZUBE.js → chunk-4YMBG4SM.js} +3664 -2958
  7. package/build/{chunk-26UG42AZ.js → chunk-MHMPJB2Y.js} +2 -2
  8. package/build/types/analysis/AnalyzedTextTranslationPackage.d.ts +21 -0
  9. package/build/types/analysis/Analyzer.d.ts +15 -9
  10. package/build/types/analysis/DiagnosticCollector.d.ts +2 -0
  11. package/build/types/analysis/control-flow/NarrowableReference.d.ts +3 -3
  12. package/build/types/analysis/semantic-context/SemanticContext.d.ts +2 -3
  13. package/build/types/analysis/semantic-context/SemanticContextBase.d.ts +11 -1
  14. package/build/types/analysis/semantic-context/SemanticContextBuilder.d.ts +10 -10
  15. package/build/types/analysis/semantic-context/SemanticContextValidatingNameConflicts.d.ts +7 -7
  16. package/build/types/analysis/semantic-context/SpecialLocalDeclarationsBuilder.d.ts +1 -0
  17. package/build/types/analysis/semantic-context/SubprogramBodyAndParametersSemanticContext.d.ts +34 -12
  18. package/build/types/analysis/semantic-context/SubprogramSemanticContext.d.ts +9 -0
  19. package/build/types/common/Query.d.ts +1 -0
  20. package/build/types/diagnostic/DiagnosticCode.d.ts +1 -0
  21. package/build/types/emitter/EmitPhaseName.d.ts +3 -0
  22. package/build/types/emitter/Emitter.d.ts +1 -2
  23. package/build/types/emitter/EmitterContext.d.ts +1 -0
  24. package/build/types/emitter/Entities.d.ts +5 -0
  25. package/build/types/emitter/GeneralLowering.d.ts +1 -2
  26. package/build/types/emitter/IrBuilder.d.ts +5 -3
  27. package/build/types/emitter/IrFactory.d.ts +118 -0
  28. package/build/types/emitter/Transformer.d.ts +0 -2
  29. package/build/types/emitter/ir/Nodes.d.ts +328 -323
  30. package/build/types/emitter/ir/types.d.ts +2 -2
  31. package/build/types/entities/PackageEntity.d.ts +14 -3
  32. package/build/types/entities/StructuredTypeEntity.d.ts +1 -0
  33. package/build/types/entities/TextTranslationEntity.d.ts +45 -0
  34. package/build/types/entities/VariableEntity.d.ts +7 -16
  35. package/build/types/entities/index.d.ts +4 -4
  36. package/build/types/entities/translated/TranslatedPackageEntity.d.ts +3 -2
  37. package/build/types/parser/TokenKind.d.ts +56 -55
  38. package/build/types/parser/UnescapeText.d.ts +1 -0
  39. package/build/types/project/SourcePackage.d.ts +7 -3
  40. package/build/types/project/configuration/ConfigurationConverter.d.ts +3 -0
  41. package/build/types/project/configuration/types/PackageConfigurationEn.d.ts +3 -0
  42. package/build/types/project/configuration/types/PackageConfigurationRu.d.ts +3 -0
  43. package/build/types/services/DisplayService.d.ts +1 -1
  44. package/build/types/services/NodeSemanticInfo.d.ts +8 -2
  45. package/build/types/tree/NodeKind.d.ts +21 -20
  46. package/build/types/tree/Nodes.d.ts +45 -18
  47. package/build/types/tree/Token.d.ts +4 -1
  48. package/build/types/ts-interop/Entities.d.ts +5 -3
  49. package/build/types/ts-interop/TsInteropContext.d.ts +3 -2
  50. package/package.json +1 -1
  51. package/build/types/analysis/semantic-context/TranslationTextTemplateSemanticContext.d.ts +0 -13
  52. package/build/types/entities/LocalizableTextEntity.d.ts +0 -80
@@ -10,7 +10,7 @@ import {
10
10
  WellKnownDeclarationsLoadError,
11
11
  __async,
12
12
  createTsInteropInputsForCompilation
13
- } from "./chunk-WTJNZUBE.js";
13
+ } from "./chunk-4YMBG4SM.js";
14
14
 
15
15
  // source/executor/Compiler.ts
16
16
  var Compiler = class {