@artel/artc 0.6.25277 → 0.6.25279

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 (75) hide show
  1. package/build/Cli.js +3 -3
  2. package/build/api/Api.js +14 -20
  3. package/build/api/ApiNodeJS.js +3 -3
  4. package/build/api/ApiServices.js +609 -565
  5. package/build/{chunk-QK3TWMY2.js → chunk-65GDIOT3.js} +20 -24
  6. package/build/{chunk-DKZTCPRN.js → chunk-C4HHHOM5.js} +15 -15
  7. package/build/{chunk-EVYL6VFM.js → chunk-HPU7DXMO.js} +2235 -1500
  8. package/build/types/analysis/AccessedFunction.d.ts +3 -3
  9. package/build/types/analysis/AnalyzedTextTranslationPackage.d.ts +2 -2
  10. package/build/types/analysis/AnalyzedTranslationPackage.d.ts +11 -8
  11. package/build/types/analysis/Analyzer.d.ts +23 -19
  12. package/build/types/analysis/DeclarationsUsageCounter.d.ts +2 -2
  13. package/build/types/analysis/{DiagnosticCollector.d.ts → SourceFileAnalyzer.d.ts} +4 -5
  14. package/build/types/analysis/SourcePackageDependencyGraph.d.ts +2 -2
  15. package/build/types/analysis/SubstitutedFunction.d.ts +3 -3
  16. package/build/types/analysis/TranslatedEntityNameConflictsValidator.d.ts +28 -0
  17. package/build/types/analysis/Translation.d.ts +1 -2
  18. package/build/types/analysis/UserDefinableBinaryOperatorResolver.d.ts +1 -1
  19. package/build/types/analysis/UserDefinableUnaryOperatorResolver.d.ts +1 -1
  20. package/build/types/analysis/index.d.ts +1 -1
  21. package/build/types/analysis/semantic-context/Declarations.d.ts +3 -3
  22. package/build/types/analysis/semantic-context/SemanticContextBase.d.ts +2 -2
  23. package/build/types/api/Api.d.ts +1 -1
  24. package/build/types/api/ApiServices.d.ts +1 -1
  25. package/build/types/common/TaskController.d.ts +14 -0
  26. package/build/types/common/TreeTraversal.d.ts +10 -9
  27. package/build/types/common/index.d.ts +1 -5
  28. package/build/types/diagnostic/DiagnosticCode.d.ts +5 -1
  29. package/build/types/{common → diagnostic}/WithDiagnostics.d.ts +1 -1
  30. package/build/types/emitter/Emitter.d.ts +3 -3
  31. package/build/types/emitter/EmitterContext.d.ts +1 -1
  32. package/build/types/emitter/EntityMap.d.ts +1 -1
  33. package/build/types/entities/Entity.d.ts +3 -1
  34. package/build/types/entities/EntityNaming.d.ts +2 -0
  35. package/build/types/entities/interfaces/FunctionEntity.d.ts +19 -6
  36. package/build/types/entities/interfaces/TypeParameterEntity.d.ts +2 -2
  37. package/build/types/entities/intrinsic/IntrinsicFunctionEntity.d.ts +3 -1
  38. package/build/types/entities/source/SourceFunctionEntity.d.ts +86 -5
  39. package/build/types/entities/source/SourceVariableEntity.d.ts +3 -1
  40. package/build/types/entities/translated/TranslatedAliasTypeEntity.d.ts +0 -1
  41. package/build/types/entities/translated/TranslatedConstructorEntity.d.ts +1 -1
  42. package/build/types/entities/translated/TranslatedFunctionEntity.d.ts +29 -14
  43. package/build/types/entities/translated/TranslatedFunctionTypeEntity.d.ts +0 -1
  44. package/build/types/entities/translated/TranslatedIndexerEntity.d.ts +19 -9
  45. package/build/types/entities/translated/TranslatedOperatorEntity.d.ts +21 -10
  46. package/build/types/entities/translated/TranslatedPackageEntity.d.ts +0 -2
  47. package/build/types/entities/translated/TranslatedStructuredTypeEntity.d.ts +0 -1
  48. package/build/types/entities/translated/TranslatedVariantTypeEntity.d.ts +0 -1
  49. package/build/types/executor/Compiler.d.ts +6 -6
  50. package/build/types/executor/NodeCompiler.d.ts +6 -6
  51. package/build/types/project/CompilationLoader.d.ts +5 -5
  52. package/build/types/project/FileSystemTree.d.ts +1 -1
  53. package/build/types/project/PackageContentCreator.d.ts +2 -1
  54. package/build/types/services/{CustomCommand.d.ts → CustomRequests.d.ts} +20 -51
  55. package/build/types/services/DefinitionService.d.ts +2 -2
  56. package/build/types/services/DeleteBlockFromScriptService.d.ts +6 -0
  57. package/build/types/services/DisplayService.d.ts +22 -7
  58. package/build/types/services/DocumentHighlightsService.d.ts +2 -2
  59. package/build/types/services/LanguageServer.d.ts +4 -3
  60. package/build/types/services/NodeSemanticInfo.d.ts +1 -6
  61. package/build/types/services/ReferencesService.d.ts +3 -3
  62. package/build/types/services/RenameService.d.ts +2 -2
  63. package/build/types/services/SemanticTokensService.d.ts +4 -4
  64. package/build/types/services/source-generation/SourceGenerationService.d.ts +6 -5
  65. package/build/types/services/workspace/CompilationController.d.ts +7 -5
  66. package/build/types/services/workspace/FileSystemTreeProviderBasedOnWatchedFileSystem.d.ts +2 -2
  67. package/build/types/services/workspace/ManuallyUpdatedFileSystemTreeProvider.d.ts +2 -2
  68. package/build/types/services/workspace/Workspace.d.ts +3 -5
  69. package/build/types/services/workspace/WorkspaceFiles.d.ts +3 -3
  70. package/build/types/ts-interop/Entities.d.ts +3 -0
  71. package/package.json +1 -1
  72. package/build/types/common/Delayed.d.ts +0 -7
  73. package/build/types/common/ThrottledCancellationToken.d.ts +0 -17
  74. package/build/types/common/YieldExecution.d.ts +0 -1
  75. /package/build/types/{common → analysis}/TreeQuery.d.ts +0 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.