@artel/artc 0.6.26017 → 0.6.26019

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 (331) hide show
  1. package/build/Cli.js +3 -3
  2. package/build/api/Api.js +39 -161
  3. package/build/api/ApiNodeJS.js +3 -3
  4. package/build/api/ApiServices.js +6744 -8943
  5. package/build/{chunk-UCBPXOLW.js → chunk-27AIX6Z7.js} +3 -5
  6. package/build/{chunk-SJFIPH42.js → chunk-LYYIQT6J.js} +63496 -60655
  7. package/build/{chunk-65XBWCU7.js → chunk-QBUXIP7E.js} +11 -11
  8. package/build/types/analysis/AccessedFunction.d.ts +3 -6
  9. package/build/types/analysis/AccessedFunctionParameter.d.ts +7 -0
  10. package/build/types/analysis/Analyzer.d.ts +81 -580
  11. package/build/types/analysis/BaseMemberConflictsValidator.d.ts +1 -1
  12. package/build/types/analysis/DeclarationsUsageMap.d.ts +14 -0
  13. package/build/types/analysis/EntityOrPackageNameTreeNode.d.ts +13 -0
  14. package/build/types/analysis/ImportedPackageNameTree.d.ts +6 -2
  15. package/build/types/analysis/NodeOrDiagnosticLocation.d.ts +12 -0
  16. package/build/types/analysis/OverridableTypeMember.d.ts +6 -0
  17. package/build/types/analysis/ReferencedPackagesCollector.d.ts +24 -0
  18. package/build/types/analysis/ResolvedImplementationPackage.d.ts +1 -2
  19. package/build/types/analysis/SignatureComparisonOptions.d.ts +6 -0
  20. package/build/types/analysis/SourcePackageDependencyGraph.d.ts +2 -3
  21. package/build/types/analysis/SpecialNameKey.d.ts +1 -1
  22. package/build/types/analysis/SubstitutedFunction.d.ts +1 -1
  23. package/build/types/analysis/TsInteropInputs.d.ts +9 -0
  24. package/build/types/analysis/TypeAssignabilityFlags.d.ts +22 -0
  25. package/build/types/analysis/TypeMemberLookup.d.ts +1 -1
  26. package/build/types/analysis/a/Analyzer.d.ts +466 -0
  27. package/build/types/analysis/{ArgumentToParameterMatchResult.d.ts → a/ArgumentToParameterMatchResult.d.ts} +4 -4
  28. package/build/types/analysis/{ArgumentsToParametersMatcher.d.ts → a/ArgumentsToParametersMatcher.d.ts} +5 -5
  29. package/build/types/analysis/{AutotypeCallExpressionMeaning.d.ts → a/AutotypeCallExpressionMeaning.d.ts} +8 -9
  30. package/build/types/analysis/{BaseExpressionMeaning.d.ts → a/BaseExpressionMeaning.d.ts} +7 -8
  31. package/build/types/analysis/{CallExpressionMeaning.d.ts → a/CallExpressionMeaning.d.ts} +11 -16
  32. package/build/types/analysis/{ConstructorCallResolver.d.ts → a/ConstructorCallResolver.d.ts} +9 -7
  33. package/build/types/analysis/a/DeclarationsUsageCounter.d.ts +12 -0
  34. package/build/types/analysis/{DereferenceExpressionMeaning.d.ts → a/DereferenceExpressionMeaning.d.ts} +5 -5
  35. package/build/types/analysis/a/ExpressionAnalysisOptions.d.ts +21 -0
  36. package/build/types/analysis/a/FindModifier.d.ts +5 -0
  37. package/build/types/analysis/{FunctionAccessResolver.d.ts → a/FunctionAccessResolver.d.ts} +11 -8
  38. package/build/types/analysis/{IdentifierExpressionMeaning.d.ts → a/IdentifierExpressionMeaning.d.ts} +11 -13
  39. package/build/types/analysis/{IndexedAccessExpressionMeaning.d.ts → a/IndexedAccessExpressionMeaning.d.ts} +5 -5
  40. package/build/types/analysis/{InstanceFieldsInitializationValidator.d.ts → a/InstanceFieldsInitializationValidator.d.ts} +4 -4
  41. package/build/types/analysis/{MemberAccessExpressionMeaning.d.ts → a/MemberAccessExpressionMeaning.d.ts} +15 -23
  42. package/build/types/analysis/{ModifierValidator.d.ts → a/ModifierValidator.d.ts} +3 -3
  43. package/build/types/analysis/{NamedTypeResolver.d.ts → a/NamedTypeResolver.d.ts} +5 -5
  44. package/build/types/analysis/{NamedTypeSpecifierResolver.d.ts → a/NamedTypeSpecifierResolver.d.ts} +4 -4
  45. package/build/types/analysis/{NodeTypeUtils.d.ts → a/NodeTypeUtils.d.ts} +1 -1
  46. package/build/types/analysis/{ObjectExpressionMeaning.d.ts → a/ObjectExpressionMeaning.d.ts} +4 -5
  47. package/build/types/analysis/{OverloadResolver.d.ts → a/OverloadResolver.d.ts} +9 -8
  48. package/build/types/analysis/{OwnAndBaseConstructorCallsChecker.d.ts → a/OwnAndBaseConstructorCallsChecker.d.ts} +4 -4
  49. package/build/types/analysis/{OwnConstructorCallExpressionMeaning.d.ts → a/OwnConstructorCallExpressionMeaning.d.ts} +6 -8
  50. package/build/types/analysis/{PackageAndStaticVariablesInitializationValidator.d.ts → a/PackageAndStaticVariablesInitializationValidator.d.ts} +4 -4
  51. package/build/types/analysis/{ReductionSourceMemberFinder.d.ts → a/ReductionSourceMemberFinder.d.ts} +5 -6
  52. package/build/types/analysis/{ReservedNameDictionary.d.ts → a/ReservedNameDictionary.d.ts} +3 -1
  53. package/build/types/analysis/{AnalyzedTranslationPackage.d.ts → a/ResolvedTranslationPackage.d.ts} +10 -12
  54. package/build/types/analysis/{ReturnTypeInferrer.d.ts → a/ReturnTypeInferrer.d.ts} +3 -3
  55. package/build/types/analysis/{SourceFileAnalyzer.d.ts → a/SourceFileAnalyzer.d.ts} +6 -6
  56. package/build/types/analysis/{SourcePackageMembersCreator.d.ts → a/SourcePackageMembersCreator.d.ts} +3 -3
  57. package/build/types/analysis/a/SyntacticAccessKind.d.ts +6 -0
  58. package/build/types/analysis/{TagMeaning.d.ts → a/TagMeaning.d.ts} +14 -21
  59. package/build/types/analysis/{TextIdentity.d.ts → a/TextIdentity.d.ts} +2 -2
  60. package/build/types/analysis/{TranslatedEntityNameConflictsValidator.d.ts → a/TranslatedEntityNameConflictsValidator.d.ts} +3 -3
  61. package/build/types/analysis/{TreeQuery.d.ts → a/TreeQuery.d.ts} +7 -8
  62. package/build/types/analysis/{TypeArgumentInferrer.d.ts → a/TypeArgumentInferrer.d.ts} +5 -4
  63. package/build/types/analysis/{TypeInferrer.d.ts → a/TypeInferrer.d.ts} +2 -2
  64. package/build/types/analysis/{TypeNarrower.d.ts → a/TypeNarrower.d.ts} +2 -2
  65. package/build/types/analysis/{TypeOverloadResolver.d.ts → a/TypeOverloadResolver.d.ts} +1 -1
  66. package/build/types/analysis/{UserDefinableBinaryOperatorResolver.d.ts → a/UserDefinableBinaryOperatorResolver.d.ts} +6 -6
  67. package/build/types/analysis/{UserDefinableUnaryOperatorResolver.d.ts → a/UserDefinableUnaryOperatorResolver.d.ts} +4 -4
  68. package/build/types/analysis/{control-flow → a/control-flow}/GraphBuilder.d.ts +6 -7
  69. package/build/types/analysis/{control-flow → a/control-flow}/NarrowableExpression.d.ts +1 -1
  70. package/build/types/analysis/{control-flow → a/control-flow}/NarrowableReference.d.ts +3 -3
  71. package/build/types/analysis/{control-flow → a/control-flow}/Nodes.d.ts +1 -1
  72. package/build/types/analysis/{semantic-context → a/semantic-context}/Declarations.d.ts +4 -4
  73. package/build/types/analysis/{semantic-context → a/semantic-context}/FieldWithInitializerSemanticContext.d.ts +3 -3
  74. package/build/types/analysis/{semantic-context → a/semantic-context}/SemanticContextBase.d.ts +28 -22
  75. package/build/types/analysis/{semantic-context → a/semantic-context}/SemanticContextBuilder.d.ts +16 -13
  76. package/build/types/analysis/{semantic-context → a/semantic-context}/SemanticContextValidatingNameConflicts.d.ts +4 -4
  77. package/build/types/analysis/{semantic-context → a/semantic-context}/SemanticContextWithParent.d.ts +1 -1
  78. package/build/types/analysis/{semantic-context → a/semantic-context}/SourceFileSemanticContext.d.ts +9 -10
  79. package/build/types/analysis/{semantic-context → a/semantic-context}/SpecialLocalDeclarationsBuilder.d.ts +2 -2
  80. package/build/types/analysis/{semantic-context → a/semantic-context}/SubprogramBodyAndParametersSemanticContext.d.ts +3 -3
  81. package/build/types/analysis/{semantic-context → a/semantic-context}/SubprogramSemanticContext.d.ts +7 -8
  82. package/build/types/analysis/{semantic-context → a/semantic-context}/TypeSemanticContext.d.ts +8 -9
  83. package/build/types/analysis/m/Analyzer.d.ts +10 -0
  84. package/build/types/api/Api.d.ts +24 -25
  85. package/build/types/common/LocalizationHelper.d.ts +1 -11
  86. package/build/types/common/LocalizationHelperA.d.ts +16 -0
  87. package/build/types/common/Logger.d.ts +1 -1
  88. package/build/types/common/index.d.ts +1 -1
  89. package/build/types/diagnostic/DiagnosticCode.d.ts +177 -174
  90. package/build/types/diagnostic/TokenDiagnostic.d.ts +1 -1
  91. package/build/types/emitter/Emitter.d.ts +1 -1
  92. package/build/types/emitter/{IrBuilder.d.ts → IrBuilderA.d.ts} +7 -7
  93. package/build/types/entities/BaseObjectType.d.ts +1 -1
  94. package/build/types/entities/Entity.d.ts +3 -47
  95. package/build/types/entities/EntityKind.d.ts +16 -0
  96. package/build/types/entities/EntityLocalizationContext.d.ts +8 -6
  97. package/build/types/entities/EntityToStringDecorator.d.ts +4 -0
  98. package/build/types/entities/IEntity.d.ts +1 -3
  99. package/build/types/entities/OperatorKind.d.ts +2 -2
  100. package/build/types/entities/PackageEntityMembers.d.ts +1 -2
  101. package/build/types/{analysis → entities}/Tag.d.ts +5 -2
  102. package/build/types/{analysis → entities}/Translation.d.ts +7 -7
  103. package/build/types/entities/TypeEntity.d.ts +2 -1
  104. package/build/types/entities/TypeMemberEntity.d.ts +31 -0
  105. package/build/types/entities/index.d.ts +5 -1
  106. package/build/types/entities/interfaces/AliasTypeEntity.d.ts +4 -5
  107. package/build/types/entities/interfaces/ConstructorEntity.d.ts +3 -4
  108. package/build/types/entities/interfaces/DereferenceOperatorEntity.d.ts +2 -2
  109. package/build/types/entities/interfaces/DestructorEntity.d.ts +2 -2
  110. package/build/types/entities/interfaces/FunctionEntity.d.ts +3 -5
  111. package/build/types/entities/interfaces/FunctionTypeEntity.d.ts +3 -5
  112. package/build/types/entities/interfaces/GetterEntity.d.ts +2 -2
  113. package/build/types/entities/interfaces/IndexerEntity.d.ts +2 -2
  114. package/build/types/entities/interfaces/PackageAliasEntity.d.ts +2 -2
  115. package/build/types/entities/interfaces/PackageEntity.d.ts +23 -2
  116. package/build/types/entities/interfaces/ReducedTypeEntity.d.ts +4 -5
  117. package/build/types/entities/interfaces/SetterEntity.d.ts +2 -2
  118. package/build/types/entities/interfaces/StructuredTypeEntity.d.ts +3 -5
  119. package/build/types/entities/interfaces/TextTranslationEntity.d.ts +3 -3
  120. package/build/types/entities/interfaces/TypeExtensionEntity.d.ts +3 -4
  121. package/build/types/entities/interfaces/TypeParameterEntity.d.ts +2 -2
  122. package/build/types/entities/interfaces/VariableEntity.d.ts +11 -11
  123. package/build/types/entities/interfaces/VariantTypeEntity.d.ts +3 -5
  124. package/build/types/entities/intrinsic/IntrinsicConstructorEntity.d.ts +7 -5
  125. package/build/types/entities/intrinsic/IntrinsicFunctionEntity.d.ts +9 -4
  126. package/build/types/entities/intrinsic/IntrinsicFunctionTypeEntity.d.ts +3 -3
  127. package/build/types/entities/intrinsic/IntrinsicGetterEntity.d.ts +5 -4
  128. package/build/types/entities/intrinsic/IntrinsicSetterEntity.d.ts +21 -0
  129. package/build/types/entities/intrinsic/IntrinsicStructuredTypeEntity.d.ts +5 -3
  130. package/build/types/entities/intrinsic/IntrinsicTypeParameterEntity.d.ts +6 -4
  131. package/build/types/entities/intrinsic/IntrinsicVariableEntity.d.ts +6 -4
  132. package/build/types/entities/intrinsic/index.d.ts +1 -0
  133. package/build/types/entities/source/{SourceAliasTypeEntity.d.ts → a/SourceAliasTypeEntity.d.ts} +5 -8
  134. package/build/types/entities/source/{SourceConstructorEntity.d.ts → a/SourceConstructorEntity.d.ts} +6 -8
  135. package/build/types/entities/source/{SourceDereferenceOperatorEntity.d.ts → a/SourceDereferenceOperatorEntity.d.ts} +7 -8
  136. package/build/types/entities/source/{SourceDestructorEntity.d.ts → a/SourceDestructorEntity.d.ts} +6 -8
  137. package/build/types/entities/source/{SourceFunctionEntity.d.ts → a/SourceFunctionEntity.d.ts} +7 -8
  138. package/build/types/entities/source/{SourceFunctionTypeEntity.d.ts → a/SourceFunctionTypeEntity.d.ts} +7 -12
  139. package/build/types/entities/source/{SourceGetterEntity.d.ts → a/SourceGetterEntity.d.ts} +9 -11
  140. package/build/types/entities/source/{SourceIndexerEntity.d.ts → a/SourceIndexerEntity.d.ts} +6 -7
  141. package/build/types/entities/source/{SourcePackageAliasEntity.d.ts → a/SourcePackageAliasEntity.d.ts} +5 -7
  142. package/build/types/entities/source/a/SourcePackageEntity.d.ts +67 -0
  143. package/build/types/entities/source/{SourceReducedTypeEntity.d.ts → a/SourceReducedTypeEntity.d.ts} +6 -9
  144. package/build/types/entities/source/{SourceSetterEntity.d.ts → a/SourceSetterEntity.d.ts} +8 -25
  145. package/build/types/entities/source/{SourceStructuredTypeEntity.d.ts → a/SourceStructuredTypeEntity.d.ts} +10 -15
  146. package/build/types/entities/source/{SourceTextTranslationEntity.d.ts → a/SourceTextTranslationEntity.d.ts} +4 -7
  147. package/build/types/entities/source/{SourceTypeExtensionEntity.d.ts → a/SourceTypeExtensionEntity.d.ts} +5 -8
  148. package/build/types/entities/source/{SourceTypeParameterEntity.d.ts → a/SourceTypeParameterEntity.d.ts} +6 -9
  149. package/build/types/entities/source/{SourceVariableEntity.d.ts → a/SourceVariableEntity.d.ts} +7 -8
  150. package/build/types/entities/source/{SourceVariantTypeEntity.d.ts → a/SourceVariantTypeEntity.d.ts} +6 -10
  151. package/build/types/entities/translated/TranslatedAliasTypeEntity.d.ts +11 -21
  152. package/build/types/entities/translated/TranslatedConstructorEntity.d.ts +5 -17
  153. package/build/types/entities/translated/TranslatedDereferenceOperatorEntity.d.ts +5 -8
  154. package/build/types/entities/translated/TranslatedDestructorEntity.d.ts +10 -14
  155. package/build/types/entities/translated/TranslatedFunctionEntity.d.ts +14 -31
  156. package/build/types/entities/translated/TranslatedFunctionTypeEntity.d.ts +9 -25
  157. package/build/types/entities/translated/TranslatedGetterEntity.d.ts +5 -9
  158. package/build/types/entities/translated/TranslatedIndexerEntity.d.ts +6 -16
  159. package/build/types/entities/translated/TranslatedPackageEntity.d.ts +37 -12
  160. package/build/types/entities/translated/TranslatedReducedTypeEntity.d.ts +10 -19
  161. package/build/types/entities/translated/TranslatedSetterEntity.d.ts +5 -9
  162. package/build/types/entities/translated/TranslatedStructuredTypeEntity.d.ts +18 -27
  163. package/build/types/entities/translated/TranslatedTypeExtensionEntity.d.ts +8 -15
  164. package/build/types/entities/translated/TranslatedTypeParameterEntity.d.ts +5 -9
  165. package/build/types/entities/translated/TranslatedVariableEntity.d.ts +10 -16
  166. package/build/types/entities/translated/TranslatedVariantTypeEntity.d.ts +10 -25
  167. package/build/types/entities/translated/source/a/SourceTranslatedAliasTypeEntity.d.ts +14 -0
  168. package/build/types/entities/translated/source/a/SourceTranslatedConstructorEntity.d.ts +12 -0
  169. package/build/types/entities/translated/source/a/SourceTranslatedDestructorEntity.d.ts +9 -0
  170. package/build/types/entities/translated/source/a/SourceTranslatedFunctionEntity.d.ts +24 -0
  171. package/build/types/entities/translated/source/a/SourceTranslatedFunctionTypeEntity.d.ts +13 -0
  172. package/build/types/entities/translated/source/a/SourceTranslatedIndexerEntity.d.ts +11 -0
  173. package/build/types/entities/translated/source/a/SourceTranslatedPackageEntity.d.ts +19 -0
  174. package/build/types/entities/translated/source/a/SourceTranslatedPackageStructuredTypeEntity.d.ts +20 -0
  175. package/build/types/entities/translated/source/a/SourceTranslatedPackageVariantTypeEntity.d.ts +14 -0
  176. package/build/types/entities/translated/source/a/SourceTranslatedReducedTypeEntity.d.ts +14 -0
  177. package/build/types/entities/translated/source/a/SourceTranslatedTypeExtensionEntity.d.ts +9 -0
  178. package/build/types/entities/translated/source/a/index.d.ts +11 -0
  179. package/build/types/executor/NodeCompiler.d.ts +1 -1
  180. package/build/types/parser/{ConvertTokenKind.d.ts → a/ConvertTokenKind.d.ts} +1 -1
  181. package/build/types/parser/{KeywordDictionary.d.ts → a/KeywordDictionary.d.ts} +4 -3
  182. package/build/types/parser/{Parser.d.ts → a/Parser.d.ts} +2 -2
  183. package/build/types/parser/a/TokenKind.d.ts +80 -0
  184. package/build/types/parser/{TriviaInterner.d.ts → a/TriviaInterner.d.ts} +1 -1
  185. package/build/types/project/CompilationLoader.d.ts +3 -3
  186. package/build/types/project/SourceFile.d.ts +34 -10
  187. package/build/types/project/SourcePackage.d.ts +71 -19
  188. package/build/types/project/configuration/ConfigurationConverter.d.ts +3 -5
  189. package/build/types/project/configuration/ConfigurationFileParser.d.ts +7 -6
  190. package/build/types/project/configuration/ConfigurationTranslator.d.ts +1 -3
  191. package/build/types/project/configuration/types/PackageConfigurationEn.d.ts +1 -2
  192. package/build/types/project/configuration/types/PackageConfigurationRu.d.ts +1 -2
  193. package/build/types/services/LanguageServer.d.ts +10 -10
  194. package/build/types/services/a/CodeActionsService.d.ts +10 -0
  195. package/build/types/services/{CompletionService.d.ts → a/CompletionService.d.ts} +5 -52
  196. package/build/types/services/a/DefinitionService.d.ts +11 -0
  197. package/build/types/services/a/DisplayService.d.ts +57 -0
  198. package/build/types/services/a/EvaluatableExpressionService.d.ts +10 -0
  199. package/build/types/services/a/HoverService.d.ts +11 -0
  200. package/build/types/services/a/NodeSemanticInfo.d.ts +45 -0
  201. package/build/types/services/a/RenameService.d.ts +11 -0
  202. package/build/types/services/a/ScriptEditingService.d.ts +13 -0
  203. package/build/types/services/a/SelectionRangeService.d.ts +7 -0
  204. package/build/types/services/a/SemanticTokensService.d.ts +11 -0
  205. package/build/types/services/a/SourceFileItemsService.d.ts +11 -0
  206. package/build/types/services/{TranslationService.d.ts → a/TranslationService.d.ts} +4 -4
  207. package/build/types/services/a/TranslationsGenerationService.d.ts +7 -0
  208. package/build/types/services/{TreeUtils.d.ts → a/TreeUtils.d.ts} +1 -1
  209. package/build/types/services/a/references/DefinitionInfoFinder.d.ts +6 -0
  210. package/build/types/services/a/references/ReferencesFinder.d.ts +7 -0
  211. package/build/types/services/{signature-help → a/signature-help}/ParametersSignatureHelpProvider.d.ts +4 -4
  212. package/build/types/services/a/signature-help/SignatureHelpService.d.ts +6 -0
  213. package/build/types/services/{signature-help → a/signature-help}/SignatureWithParameters.d.ts +6 -6
  214. package/build/types/services/{signature-help → a/signature-help}/TypeParameterSignatureHelpProvider.d.ts +4 -4
  215. package/build/types/services/{signature-help → a/signature-help}/utils.d.ts +1 -1
  216. package/build/types/services/{FileSystemTreeDisplayService.d.ts → common/FileSystemTreeDisplayService.d.ts} +1 -1
  217. package/build/types/services/{Types.d.ts → common/Types.d.ts} +5 -5
  218. package/build/types/services/{Utils.d.ts → common/Utils.d.ts} +2 -2
  219. package/build/types/services/common/WorkspaceItemsService.d.ts +6 -0
  220. package/build/types/services/{CodeActionsService.d.ts → common/code-action/Types.d.ts} +8 -9
  221. package/build/types/services/common/completion/Types.d.ts +49 -0
  222. package/build/types/services/common/definition/DefinitionService.d.ts +23 -0
  223. package/build/types/services/common/definition/Types.d.ts +7 -0
  224. package/build/types/services/common/display/BaseDisplayService.d.ts +41 -0
  225. package/build/types/services/common/display/DisplayService.d.ts +52 -0
  226. package/build/types/services/{DisplayService.d.ts → common/display/Types.d.ts} +60 -177
  227. package/build/types/services/common/display/index.d.ts +2 -0
  228. package/build/types/services/common/document-highlights/DocumentHighlightsService.d.ts +9 -0
  229. package/build/types/services/common/document-highlights/Types.d.ts +11 -0
  230. package/build/types/services/common/evaluatable-expression/Types.d.ts +6 -0
  231. package/build/types/services/common/hover/HoverService.d.ts +16 -0
  232. package/build/types/services/common/hover/Types.d.ts +8 -0
  233. package/build/types/services/common/node-semantic-info/Types.d.ts +101 -0
  234. package/build/types/services/common/references/ReferencesFinder.d.ts +14 -0
  235. package/build/types/services/common/references/ReferencesSearchUtils.d.ts +5 -0
  236. package/build/types/services/common/references/ReferencesService.d.ts +12 -0
  237. package/build/types/services/common/references/Types.d.ts +41 -0
  238. package/build/types/services/common/rename/RenameService.d.ts +17 -0
  239. package/build/types/services/common/rename/Types.d.ts +8 -0
  240. package/build/types/services/common/script-editing/ScriptEditingService.d.ts +9 -0
  241. package/build/types/services/common/script-editing/Types.d.ts +9 -0
  242. package/build/types/services/common/selection-rage/Types.d.ts +6 -0
  243. package/build/types/services/{SemanticTokensService.d.ts → common/semantic-tokens/Types.d.ts} +1 -10
  244. package/build/types/services/{signature-help/SignatureHelpService.d.ts → common/signature-help/Types.d.ts} +1 -6
  245. package/build/types/services/{SourceFileItemsService.d.ts → common/source-file-items/Types.d.ts} +7 -16
  246. package/build/types/services/{source-generation → common/source-generation}/EntityToSyntax.d.ts +3 -3
  247. package/build/types/services/{source-generation → common/source-generation}/SourceGenerationService.d.ts +6 -6
  248. package/build/types/services/workspace/CompilationController.d.ts +5 -4
  249. package/build/types/services/workspace/FileSystemTreeProviderBasedOnWatchedFileSystem.d.ts +1 -1
  250. package/build/types/services/workspace/Workspace.d.ts +1 -1
  251. package/build/types/tree/NodePath.d.ts +6 -2
  252. package/build/types/tree/Types.d.ts +7 -0
  253. package/build/types/tree/Utils.d.ts +4 -7
  254. package/build/types/tree/a/BaseNode.d.ts +42 -0
  255. package/build/types/tree/{Nodes.d.ts → a/Nodes.d.ts} +87 -66
  256. package/build/types/tree/{SyntaxFactory.d.ts → a/SyntaxFactory.d.ts} +8 -4
  257. package/build/types/tree/{SyntaxToCode.d.ts → a/SyntaxToCode.d.ts} +2 -2
  258. package/build/types/tree/a/Token.d.ts +46 -0
  259. package/build/types/tree/a/TokenKind.d.ts +74 -0
  260. package/build/types/tree/a/TreeTraversal.d.ts +18 -0
  261. package/build/types/tree/a/Types.d.ts +45 -0
  262. package/build/types/tree/a/Utils.d.ts +3 -0
  263. package/build/types/tree/a/index.d.ts +15 -0
  264. package/build/types/tree/index.d.ts +1 -9
  265. package/build/types/tree/{BaseNode.d.ts → m/BaseNode.d.ts} +4 -27
  266. package/build/types/tree/m/NodeKind.d.ts +4 -0
  267. package/build/types/tree/m/Nodes.d.ts +17 -0
  268. package/build/types/tree/m/TokenKind.d.ts +74 -0
  269. package/build/types/tree/m/TriviaKind.d.ts +7 -0
  270. package/build/types/tree/m/index.d.ts +5 -0
  271. package/build/types/ts-interop/Entities.d.ts +9 -353
  272. package/build/types/ts-interop/TsInteropContext.d.ts +5 -14
  273. package/build/types/ts-interop/TsPackageMembersCreator.d.ts +1 -1
  274. package/build/types/ts-interop/TsTypeMembersCreator.d.ts +1 -2
  275. package/build/types/ts-interop/TsUtils.d.ts +10 -0
  276. package/build/types/ts-interop/TypeEntities.d.ts +359 -0
  277. package/build/types/ts-interop/Utils.d.ts +1 -1
  278. package/build/types/types/AliasType.d.ts +6 -8
  279. package/build/types/types/FunctionType.d.ts +7 -8
  280. package/build/types/types/IntersectionType.d.ts +4 -7
  281. package/build/types/types/ParameterType.d.ts +7 -9
  282. package/build/types/types/ReducedType.d.ts +6 -8
  283. package/build/types/types/StandardTypes.d.ts +4 -2
  284. package/build/types/types/StructuredType.d.ts +6 -7
  285. package/build/types/types/SubstitutionStubType.d.ts +5 -8
  286. package/build/types/types/Substitutions.d.ts +1 -1
  287. package/build/types/types/Type.d.ts +15 -9
  288. package/build/types/types/TypeFactory.d.ts +11 -2
  289. package/build/types/types/TypeMembers.d.ts +5 -2
  290. package/build/types/types/UnionType.d.ts +4 -7
  291. package/build/types/types/UnresolvedType.d.ts +4 -7
  292. package/build/types/types/VariantType.d.ts +6 -8
  293. package/package.json +13 -11
  294. package/build/types/analysis/DeclarationsUsageCounter.d.ts +0 -21
  295. package/build/types/analysis/FindModifier.d.ts +0 -7
  296. package/build/types/analysis/ResolvedTextTranslationPackage.d.ts +0 -9
  297. package/build/types/analysis/Utils.d.ts +0 -47
  298. package/build/types/analysis/Visitor.d.ts +0 -7
  299. package/build/types/analysis/index.d.ts +0 -8
  300. package/build/types/common/TreeTraversal.d.ts +0 -14
  301. package/build/types/entities/source/SourcePackageEntity.d.ts +0 -33
  302. package/build/types/parser/TokenKind.d.ts +0 -75
  303. package/build/types/services/DefinitionService.d.ts +0 -24
  304. package/build/types/services/DocumentHighlightsService.d.ts +0 -18
  305. package/build/types/services/EvaluatableExpressionService.d.ts +0 -15
  306. package/build/types/services/HoverService.d.ts +0 -17
  307. package/build/types/services/NodeSemanticInfo.d.ts +0 -147
  308. package/build/types/services/ReferencesService.d.ts +0 -30
  309. package/build/types/services/RenameService.d.ts +0 -17
  310. package/build/types/services/ScriptEditingService.d.ts +0 -25
  311. package/build/types/services/SelectionRangeService.d.ts +0 -12
  312. package/build/types/services/TranslationsGenerationService.d.ts +0 -7
  313. package/build/types/services/WorkspaceItemsService.d.ts +0 -6
  314. package/build/types/tree/TokenKind.d.ts +0 -74
  315. /package/build/types/analysis/{ModifierFlags.d.ts → a/ModifierFlags.d.ts} +0 -0
  316. /package/build/types/analysis/{ReachabilityChecker.d.ts → a/ReachabilityChecker.d.ts} +0 -0
  317. /package/build/types/analysis/{VariableIsAssignedChecker.d.ts → a/VariableIsAssignedChecker.d.ts} +0 -0
  318. /package/build/types/analysis/{VariableIsNotAssignedChecker.d.ts → a/VariableIsNotAssignedChecker.d.ts} +0 -0
  319. /package/build/types/analysis/{control-flow → a/control-flow}/GraphVisualizer.d.ts +0 -0
  320. /package/build/types/analysis/{control-flow → a/control-flow}/index.d.ts +0 -0
  321. /package/build/types/analysis/{semantic-context → a/semantic-context}/SemanticContext.d.ts +0 -0
  322. /package/build/types/analysis/{semantic-context → a/semantic-context}/index.d.ts +0 -0
  323. /package/build/types/entities/source/{index.d.ts → a/index.d.ts} +0 -0
  324. /package/build/types/parser/{Scanner.d.ts → a/Scanner.d.ts} +0 -0
  325. /package/build/types/tree/{KeywordFlags.d.ts → a/KeywordFlags.d.ts} +0 -0
  326. /package/build/types/tree/{KeywordKind.d.ts → a/KeywordKind.d.ts} +0 -0
  327. /package/build/types/tree/{NodeKind.d.ts → a/NodeKind.d.ts} +0 -0
  328. /package/build/types/tree/{NodesDebug.d.ts → a/NodesDebug.d.ts} +0 -0
  329. /package/build/types/tree/{OperatorKind.d.ts → a/OperatorKind.d.ts} +0 -0
  330. /package/build/types/tree/{TokenFlags.d.ts → a/TokenFlags.d.ts} +0 -0
  331. /package/build/types/tree/{TriviaKind.d.ts → a/TriviaKind.d.ts} +0 -0
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  Compiler
3
- } from "./chunk-UCBPXOLW.js";
3
+ } from "./chunk-27AIX6Z7.js";
4
4
  import {
5
5
  ArtelVersion,
6
6
  Cached,
@@ -15,7 +15,7 @@ import {
15
15
  __async,
16
16
  performanceMeasurementStageNames,
17
17
  performanceMeasurementStages
18
- } from "./chunk-SJFIPH42.js";
18
+ } from "./chunk-LYYIQT6J.js";
19
19
 
20
20
  // source/executor/FileSystemUri.ts
21
21
  import { platform } from "os";
@@ -41,9 +41,9 @@ var FileSystemUri = class {
41
41
  };
42
42
 
43
43
  // source/executor/PhysicalFileSystem.ts
44
- import { existsSync } from "fs";
45
- import { lstat, mkdir, readFile, readdir, rm, writeFile } from "fs/promises";
46
- import { dirname, join } from "path";
44
+ import { existsSync } from "node:fs";
45
+ import { lstat, mkdir, readFile, readdir, rm, writeFile } from "node:fs/promises";
46
+ import { dirname, join } from "node:path";
47
47
  var PhysicalFileSystem = class {
48
48
  readDirectory(uri) {
49
49
  return __async(this, null, function* () {
@@ -175,9 +175,9 @@ var PhysicalTypeScriptLibrariesProvider = class {
175
175
  };
176
176
 
177
177
  // source/executor/NodeCompiler.ts
178
- import { relative } from "path";
179
- import process2 from "process";
180
- import { fileURLToPath } from "url";
178
+ import { relative } from "node:path";
179
+ import process2 from "node:process";
180
+ import { fileURLToPath } from "node:url";
181
181
 
182
182
  // source/diagnostic/DiagnosticFormatter.ts
183
183
  var DiagnosticFormatter = class {
@@ -389,9 +389,9 @@ var NodeDiagnosticFormatter = class {
389
389
  };
390
390
 
391
391
  // source/executor/CommandLineCompiler.ts
392
- import { spawn } from "child_process";
393
- import { resolve } from "path";
394
- import { fileURLToPath as fileURLToPath2 } from "url";
392
+ import { spawn } from "node:child_process";
393
+ import { resolve } from "node:path";
394
+ import { fileURLToPath as fileURLToPath2 } from "node:url";
395
395
  var CommandLineCompiler = class {
396
396
  static {
397
397
  this.successExitCode = 0;
@@ -1,6 +1,7 @@
1
1
  import { Name } from '../common/index.js';
2
- import { MethodEntity, NamedFunctionEntity, PackageOrNestedFunctionEntity, ParameterEntity, TypeParameterEntity } from '../entities/index.js';
2
+ import { MethodEntity, NamedFunctionEntity, PackageOrNestedFunctionEntity, TypeParameterEntity } from '../entities/index.js';
3
3
  import * as types from '../types/index.js';
4
+ import { AccessedFunctionParameter } from './AccessedFunctionParameter.js';
4
5
  import { Analyzer } from './Analyzer.js';
5
6
  import { SubstitutedFunction } from './SubstitutedFunction.js';
6
7
  export type AccessedFunction = AccessedFunction_entity | AccessedFunction_typeMember | AccessedFunction_substitutedFunction;
@@ -51,11 +52,7 @@ export declare class AccessedFunction_substitutedFunction implements IAccessedFu
51
52
  getSignatureType(analyzer: Analyzer): types.FunctionType;
52
53
  getOuterSubstitutions(): types.Substitutions | undefined;
53
54
  equals(other: AccessedFunction, considerLocale?: boolean): boolean;
54
- }
55
- export declare class AccessedFunctionParameter {
56
- readonly entity: ParameterEntity;
57
- readonly type: types.Type;
58
- constructor(entity: ParameterEntity, type: types.Type);
55
+ withoutSubstitutions(): NotSubstitutedAccessedFunction;
59
56
  }
60
57
  interface IAccessedFunction {
61
58
  getTypeParameters(): readonly TypeParameterEntity[];
@@ -0,0 +1,7 @@
1
+ import { ParameterEntity } from '../entities/index.js';
2
+ import * as types from '../types/index.js';
3
+ export declare class AccessedFunctionParameter {
4
+ readonly entity: ParameterEntity;
5
+ readonly type: types.Type;
6
+ constructor(entity: ParameterEntity, type: types.Type);
7
+ }