@artel/artc 0.6.25217 → 0.6.25218

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 (103) hide show
  1. package/build/Cli.js +3 -3
  2. package/build/api/Api.js +10 -62
  3. package/build/api/ApiNodeJS.js +3 -3
  4. package/build/api/ApiServices.js +1044 -1001
  5. package/build/{chunk-HN3XZZQX.js → chunk-FI6LW2RD.js} +5 -4
  6. package/build/{chunk-TXAEJ2GI.js → chunk-SK7ZBC3X.js} +15375 -15317
  7. package/build/{chunk-CMPXXHBQ.js → chunk-TQDMVKTN.js} +13 -5
  8. package/build/types/analysis/AnalyzedTranslationPackage.d.ts +4 -26
  9. package/build/types/analysis/Analyzer.d.ts +27 -69
  10. package/build/types/analysis/{CallArgumentToParameterMatchResult.d.ts → ArgumentToParameterMatchResult.d.ts} +4 -4
  11. package/build/types/analysis/{CallArgumentsToParametersMatcher.d.ts → ArgumentsToParametersMatcher.d.ts} +14 -14
  12. package/build/types/analysis/ConstructorOverloadResolver.d.ts +1 -1
  13. package/build/types/analysis/DereferenceExpressionMeaning.d.ts +3 -3
  14. package/build/types/analysis/DiagnosticCollector.d.ts +2 -0
  15. package/build/types/analysis/FindModifier.d.ts +2 -0
  16. package/build/types/analysis/IdentifierExpressionMeaning.d.ts +14 -12
  17. package/build/types/analysis/LocalizationContext.d.ts +4 -5
  18. package/build/types/analysis/Lookup.d.ts +8 -7
  19. package/build/types/analysis/ModifierFlags.d.ts +16 -0
  20. package/build/types/analysis/NamedTypeSpecifierResolver.d.ts +0 -1
  21. package/build/types/analysis/NodeTypeUtils.d.ts +1 -0
  22. package/build/types/analysis/OperationOverloadResolver.d.ts +2 -2
  23. package/build/types/analysis/OverloadResolver.d.ts +4 -4
  24. package/build/types/analysis/PackageMemberLookup.d.ts +5 -6
  25. package/build/types/analysis/PropertyAccessExpressionMeaning.d.ts +18 -16
  26. package/build/types/analysis/Scope.d.ts +21 -116
  27. package/build/types/analysis/SemanticContext.d.ts +16 -6
  28. package/build/types/analysis/SemanticContextBuilder.d.ts +1 -1
  29. package/build/types/analysis/SourceFileMembers.d.ts +12 -99
  30. package/build/types/analysis/TagMeaning.d.ts +57 -9
  31. package/build/types/analysis/Tags.d.ts +2 -2
  32. package/build/types/analysis/TypeMemberLookup.d.ts +15 -15
  33. package/build/types/analysis/TypeOverloadResolver.d.ts +1 -1
  34. package/build/types/analysis/WellKnownDeclarations.d.ts +1 -0
  35. package/build/types/analysis/index.d.ts +1 -1
  36. package/build/types/api/Api.d.ts +2 -6
  37. package/build/types/diagnostic/DiagnosticCode.d.ts +20 -16
  38. package/build/types/emitter/{EmitterGeneratedDeclarationKind.d.ts → EmitPhaseName.d.ts} +1 -44
  39. package/build/types/emitter/EmitterContext.d.ts +4 -1
  40. package/build/types/emitter/Entities.d.ts +52 -16
  41. package/build/types/emitter/EntityMap.d.ts +1 -3
  42. package/build/types/emitter/IrBuilder.d.ts +6 -2
  43. package/build/types/emitter/IrToJs.d.ts +5 -4
  44. package/build/types/emitter/Transformer.d.ts +18 -10
  45. package/build/types/emitter/ir/EmitOptions.d.ts +163 -0
  46. package/build/types/emitter/ir/Nodes.d.ts +206 -167
  47. package/build/types/emitter/ir/index.d.ts +1 -2
  48. package/build/types/emitter/ir/types.d.ts +3 -3
  49. package/build/types/entities/AliasTypeEntity.d.ts +8 -4
  50. package/build/types/entities/ConstructorEntity.d.ts +2 -0
  51. package/build/types/entities/DereferenceOperatorEntity.d.ts +5 -3
  52. package/build/types/entities/DestructorEntity.d.ts +2 -0
  53. package/build/types/entities/GetterEntity.d.ts +8 -0
  54. package/build/types/entities/IndexerEntity.d.ts +5 -3
  55. package/build/types/entities/MethodEntity.d.ts +9 -5
  56. package/build/types/entities/MethodTypeEntity.d.ts +10 -5
  57. package/build/types/entities/OperatorEntity.d.ts +5 -3
  58. package/build/types/entities/PackageEntity.d.ts +3 -3
  59. package/build/types/entities/PackageMembers.d.ts +4 -90
  60. package/build/types/entities/SetterEntity.d.ts +8 -0
  61. package/build/types/entities/StructuredTypeEntity.d.ts +11 -6
  62. package/build/types/entities/TypeEntity.d.ts +15 -0
  63. package/build/types/entities/TypeExtensionEntity.d.ts +2 -0
  64. package/build/types/entities/TypeParameterEntity.d.ts +11 -6
  65. package/build/types/entities/VariableEntity.d.ts +50 -41
  66. package/build/types/entities/VariantTypeEntity.d.ts +10 -11
  67. package/build/types/entities/index.d.ts +17 -25
  68. package/build/types/executor/Compiler.d.ts +1 -0
  69. package/build/types/executor/NodeCompiler.d.ts +1 -0
  70. package/build/types/parser/CharacterCodes.d.ts +8 -0
  71. package/build/types/parser/ReservedIdentifierDictionary.d.ts +1 -2
  72. package/build/types/project/FileSystemTree.d.ts +2 -2
  73. package/build/types/services/CompletionService.d.ts +4 -1
  74. package/build/types/services/DisplayService.d.ts +18 -2
  75. package/build/types/services/NodeSemanticInfo.d.ts +7 -5
  76. package/build/types/services/signature-help/SignatureWithValueParameters.d.ts +7 -21
  77. package/build/types/services/signature-help/TypeParameterSignatureHelpProvider.d.ts +1 -0
  78. package/build/types/services/source-generation/EntityToSyntax.d.ts +1 -1
  79. package/build/types/services/source-generation/SourceGenerationService.d.ts +2 -2
  80. package/build/types/services/workspace/ClientTrackedSourceFiles.d.ts +5 -5
  81. package/build/types/services/workspace/CompilationController.d.ts +3 -3
  82. package/build/types/services/workspace/FileSystemTreeProviderBasedOnWatchedFileSystem.d.ts +4 -4
  83. package/build/types/services/workspace/ManuallyUpdatedFileSystemTreeProvider.d.ts +4 -4
  84. package/build/types/services/workspace/Workspace.d.ts +3 -3
  85. package/build/types/services/workspace/WorkspaceFiles.d.ts +7 -7
  86. package/build/types/tree/KeywordKind.d.ts +37 -37
  87. package/build/types/tree/NodeKind.d.ts +57 -58
  88. package/build/types/tree/green/Nodes.d.ts +57 -71
  89. package/build/types/tree/green/SyntaxFactory.d.ts +4 -5
  90. package/build/types/tree/green/SyntaxToCode.d.ts +1 -2
  91. package/build/types/tree/red/Nodes.d.ts +65 -79
  92. package/build/types/ts-interop/Entities.d.ts +51 -28
  93. package/build/types/ts-interop/TsPackageMembersCreator.d.ts +0 -1
  94. package/build/types/types/TypeMembers.d.ts +9 -0
  95. package/package.json +2 -2
  96. package/build/types/analysis/DereferencedVariableAccess.d.ts +0 -14
  97. package/build/types/analysis/IndexedAccess.d.ts +0 -14
  98. package/build/types/analysis/VariableAccess.d.ts +0 -14
  99. package/build/types/analysis/VariantLookup.d.ts +0 -20
  100. package/build/types/emitter/ir/LoweringOptions.d.ts +0 -36
  101. package/build/types/emitter/ir/LoweringState.d.ts +0 -49
  102. package/build/types/entities/VariantEntity.d.ts +0 -31
  103. package/build/types/entities/Variants.d.ts +0 -10
@@ -1,4 +1,4 @@
1
- import { Indicator, ObservableObject } from 'reactronic';
1
+ import { Indicator, TriggeringObject } from 'reactronic';
2
2
  import { Analyzer, TsInteropInputs } from '../../analysis/index.js';
3
3
  import { CancellationToken, Uri } from '../../common/index.js';
4
4
  import { Diagnostic } from '../../diagnostic/Diagnostic.js';
@@ -6,7 +6,7 @@ import { ConvertedConfiguration, ProgramPackageConfiguration, SourceFile, fsTree
6
6
  import { PackageContent } from '../../project/PackageContent.js';
7
7
  import { TypeScriptLibrariesProvider } from '../../ts-interop/TsLibrariesProvider.js';
8
8
  import { ReadonlyClientTrackedSourceFiles } from './ClientTrackedSourceFiles.js';
9
- export declare class CompilationController extends ObservableObject {
9
+ export declare class CompilationController extends TriggeringObject {
10
10
  readonly mainCompilationReloadIndicator: Indicator;
11
11
  readonly configurationControllersUpdateIndictor: Indicator;
12
12
  private readonly _mainAnalyzerChangedIndicator;
@@ -100,7 +100,7 @@ export declare class DiagnosticsCollectionSummary {
100
100
  readonly hasErrors: boolean;
101
101
  constructor(hasErrors: boolean);
102
102
  }
103
- declare class ConfigurationController extends ObservableObject {
103
+ declare class ConfigurationController extends TriggeringObject {
104
104
  readonly packageUri: Uri;
105
105
  readonly processingIndicator: Indicator;
106
106
  readonly rootDirectory: fsTree.Directory;
@@ -1,12 +1,12 @@
1
- import { ObservableArray, ObservableMap, ObservableObject } from 'reactronic';
1
+ import { TriggeringArray, TriggeringMap, TriggeringObject } from 'reactronic';
2
2
  import { CancellationToken, Uri } from '../../common/index.js';
3
3
  import * as fsTree from '../../project/FileSystemTree.js';
4
4
  import { ReadonlyClientTrackedSourceFiles } from './ClientTrackedSourceFiles.js';
5
5
  import { FileSystemTreeProvider } from './WorkspaceFiles.js';
6
6
  import type { WorkspaceFileSystem } from './WorkspaceFileSystem.js';
7
- export declare class FileSystemTreeProviderBasedOnWatchedFileSystem extends ObservableObject implements FileSystemTreeProvider {
7
+ export declare class FileSystemTreeProviderBasedOnWatchedFileSystem extends TriggeringObject implements FileSystemTreeProvider {
8
8
  readonly fileSystemTree: fsTree.FileSystemTree;
9
- readonly loadedWorkspaceFolderByUri: ObservableMap<string, fsTree.Directory>;
9
+ readonly loadedWorkspaceFolderByUri: TriggeringMap<string, fsTree.Directory>;
10
10
  private readonly _fileSystem;
11
11
  private readonly _notificationsPublisher;
12
12
  private readonly _listener;
@@ -24,7 +24,7 @@ export declare class FileSystemTreeProviderBasedOnWatchedFileSystem extends Obse
24
24
  private readonly _lastCheckedTrackedSourceFileInfoVersionByUri;
25
25
  private readonly _loadedDirectoryUris;
26
26
  constructor(fileSystem: WorkspaceFileSystem, notificationsPublisher: FileSystemUpdateNotificationsPublisher, namesOfDirectoriesToIgnore?: string[], additionalUrisOfDirectoriesToLoad?: readonly Uri[]);
27
- initialize(workspaceFolderUris: ObservableArray<Uri>, trackedSourceFiles: ReadonlyClientTrackedSourceFiles): void;
27
+ initialize(workspaceFolderUris: TriggeringArray<Uri>, trackedSourceFiles: ReadonlyClientTrackedSourceFiles): void;
28
28
  waitLoaded(cancellationToken: CancellationToken | undefined): Promise<void>;
29
29
  dispose(): void;
30
30
  protected onTrackedSourceFilesUpdated(): void;
@@ -1,17 +1,17 @@
1
- import { ObservableArray, ObservableMap, ObservableObject } from 'reactronic';
1
+ import { TriggeringArray, TriggeringMap, TriggeringObject } from 'reactronic';
2
2
  import { CancellationToken } from '../../common/CancellationToken.js';
3
3
  import { Uri } from '../../common/Uri.js';
4
4
  import * as fsTree from '../../project/FileSystemTree.js';
5
5
  import { ReadonlyClientTrackedSourceFiles } from './ClientTrackedSourceFiles.js';
6
6
  import { FileSystemTreeProvider } from './WorkspaceFiles.js';
7
- export declare class ManuallyUpdatedFileSystemTreeProvider extends ObservableObject implements FileSystemTreeProvider {
7
+ export declare class ManuallyUpdatedFileSystemTreeProvider extends TriggeringObject implements FileSystemTreeProvider {
8
8
  readonly fileSystemTree: fsTree.FileSystemTree;
9
- readonly loadedWorkspaceFolderByUri: ObservableMap<string, fsTree.Directory>;
9
+ readonly loadedWorkspaceFolderByUri: TriggeringMap<string, fsTree.Directory>;
10
10
  private _workspaceFolderUris;
11
11
  private _trackedSourceFiles;
12
12
  private readonly _lastCheckedTrackedSourceFileInfoByUri;
13
13
  private readonly _manuallyCreatedSourceFileTextByUri;
14
- initialize(workspaceFolderUris: ObservableArray<Uri>, trackedSourceFiles: ReadonlyClientTrackedSourceFiles): void;
14
+ initialize(workspaceFolderUris: TriggeringArray<Uri>, trackedSourceFiles: ReadonlyClientTrackedSourceFiles): void;
15
15
  waitLoaded(_cancellationToken: CancellationToken | undefined): Promise<void>;
16
16
  dispose(): void;
17
17
  createOrUpdateSourceFile(uri: Uri, text: string): void;
@@ -1,4 +1,4 @@
1
- import { ObservableMap, ObservableObject } from 'reactronic';
1
+ import { TriggeringMap, TriggeringObject } from 'reactronic';
2
2
  import { Analyzer } from '../../analysis/index.js';
3
3
  import { CancellationToken, Uri } from '../../common/index.js';
4
4
  import * as fsTree from '../../project/FileSystemTree.js';
@@ -8,7 +8,7 @@ import { TypeScriptLibrariesProvider } from '../../ts-interop/TsLibrariesProvide
8
8
  import { ReadonlyClientTrackedSourceFiles } from './ClientTrackedSourceFiles.js';
9
9
  import { CompilationController, DiagnosticsCollectedInBackgroundHandler, RawPackageConfigurationsChangedHandler } from './CompilationController.js';
10
10
  import { FileSystemTreeProvider } from './WorkspaceFiles.js';
11
- export declare class Workspace extends ObservableObject {
11
+ export declare class Workspace extends TriggeringObject {
12
12
  isReadyToAcceptWorkspaceDiagnostics: boolean;
13
13
  private readonly _config;
14
14
  private readonly _compilationControllers;
@@ -19,7 +19,7 @@ export declare class Workspace extends ObservableObject {
19
19
  private readonly _tsInteropInputsCache;
20
20
  get compilationControllers(): readonly CompilationController[];
21
21
  get trackedSourceFiles(): ReadonlyClientTrackedSourceFiles;
22
- get loadedWorkspaceFolderByUri(): ObservableMap<string, fsTree.Directory>;
22
+ get loadedWorkspaceFolderByUri(): TriggeringMap<string, fsTree.Directory>;
23
23
  get workspaceFolderUris(): readonly Uri[];
24
24
  private get compilationControllerByUri();
25
25
  private constructor();
@@ -1,15 +1,15 @@
1
- import { ObservableArray, ObservableMap, ObservableObject } from 'reactronic';
1
+ import { TriggeringArray, TriggeringMap, TriggeringObject } from 'reactronic';
2
2
  import { CancellationToken, Uri } from '../../common/index.js';
3
3
  import * as fsTree from '../../project/FileSystemTree.js';
4
4
  import { ClientTrackedSourceFiles, ReadonlyClientTrackedSourceFiles } from './ClientTrackedSourceFiles.js';
5
- export declare class WorkspaceFiles extends ObservableObject {
5
+ export declare class WorkspaceFiles extends TriggeringObject {
6
6
  readonly trackedSourceFiles: ClientTrackedSourceFiles;
7
- readonly workspaceFolderUris: ObservableArray<Uri>;
8
- readonly workspaceFolderWithArtelProjectByUri: ObservableMap<string, fsTree.Directory>;
7
+ readonly workspaceFolderUris: TriggeringArray<Uri>;
8
+ readonly workspaceFolderWithArtelProjectByUri: TriggeringMap<string, fsTree.Directory>;
9
9
  private readonly _fileSystemTreeProvider;
10
10
  get fileSystemTree(): fsTree.ReadonlyFileSystemTree;
11
11
  get isMissingConfigurationDirectoryAllowed(): boolean;
12
- get loadedWorkspaceFolderByUri(): ObservableMap<string, fsTree.Directory>;
12
+ get loadedWorkspaceFolderByUri(): TriggeringMap<string, fsTree.Directory>;
13
13
  constructor(fileSystemTreeProvider: FileSystemTreeProvider);
14
14
  addWorkspaceFolders(uris: readonly Uri[]): void;
15
15
  removeWorkspaceFolders(uris: readonly Uri[]): void;
@@ -25,11 +25,11 @@ export declare class WorkspaceFiles extends ObservableObject {
25
25
  }
26
26
  export interface FileSystemTreeProvider {
27
27
  readonly fileSystemTree: fsTree.ReadonlyFileSystemTree;
28
- readonly loadedWorkspaceFolderByUri: ObservableMap<string, fsTree.Directory>;
28
+ readonly loadedWorkspaceFolderByUri: TriggeringMap<string, fsTree.Directory>;
29
29
  /**
30
30
  * Должен быть вызван до вызова всех остальных методов.
31
31
  */
32
- initialize(workspaceFolderUris: ObservableArray<Uri>, trackedSourceFiles: ReadonlyClientTrackedSourceFiles): void;
32
+ initialize(workspaceFolderUris: TriggeringArray<Uri>, trackedSourceFiles: ReadonlyClientTrackedSourceFiles): void;
33
33
  waitLoaded(cancellationToken: CancellationToken | undefined): Promise<void>;
34
34
  dispose(): void;
35
35
  }
@@ -7,43 +7,43 @@ export declare enum KeywordKind {
7
7
  PlainObject = 5,
8
8
  Variant = 6,
9
9
  Run = 7,
10
- From = 8,
11
- Else = 9,
12
- ElseIf = 10,
13
- Function = 11,
14
- If = 12,
15
- Is = 13,
16
- Return = 14,
17
- Type = 15,
18
- Basic = 16,
19
- Import = 17,
20
- Error = 18,
21
- Finally = 19,
22
- And = 20,
23
- Or = 21,
24
- Xor = 22,
25
- While = 23,
26
- Loop = 24,
27
- RepeatWhile = 25,
28
- Yield = 26,
29
- When = 27,
30
- Creation = 28,
31
- OnError = 29,
32
- BreakLoop = 30,
33
- ContinueLoop = 31,
34
- For = 32,
35
- Const = 33,
36
- Hidden = 34,
37
- Abstract = 35,
38
- Redefinable = 36,
39
- Redefined = 37,
40
- Async = 38,
41
- Static = 39,
42
- As = 40,
43
- Not = 41,
44
- Switch = 42,
45
- Case = 43,
46
- Await = 44,
10
+ Try = 8,
11
+ From = 9,
12
+ Else = 10,
13
+ ElseIf = 11,
14
+ Function = 12,
15
+ If = 13,
16
+ Is = 14,
17
+ Return = 15,
18
+ Type = 16,
19
+ Basic = 17,
20
+ Import = 18,
21
+ Error = 19,
22
+ Finally = 20,
23
+ And = 21,
24
+ Or = 22,
25
+ Xor = 23,
26
+ While = 24,
27
+ Loop = 25,
28
+ RepeatWhile = 26,
29
+ Yield = 27,
30
+ When = 28,
31
+ Creation = 29,
32
+ Catch = 30,
33
+ BreakLoop = 31,
34
+ ContinueLoop = 32,
35
+ For = 33,
36
+ Const = 34,
37
+ Hidden = 35,
38
+ Abstract = 36,
39
+ Redefinable = 37,
40
+ Redefined = 38,
41
+ Async = 39,
42
+ Static = 40,
43
+ As = 41,
44
+ Not = 42,
45
+ Switch = 43,
46
+ Case = 44,
47
47
  Dispose = 45,
48
48
  Destruction = 46,
49
49
  InHierarchy = 47,
@@ -67,7 +67,7 @@ export declare enum NodeKind {
67
67
  AsExpression = 65,
68
68
  BinaryExpression = 66,
69
69
  MethodBlockLiteral = 67,
70
- CallArgumentList = 68,
70
+ ArgumentList = 68,
71
71
  CallExpression = 69,
72
72
  AutotypeCallExpression = 70,
73
73
  IndexedAccessExpression = 71,
@@ -98,61 +98,60 @@ export declare enum NodeKind {
98
98
  DisposeStatement = 96,
99
99
  RunStatementClauseList = 97,
100
100
  RunStatement = 98,
101
- OnErrorClause = 99,
102
- ErrorVariableDeclaration = 100,
103
- FinallyClause = 101,
104
- EmptyStatement = 102,
105
- ErrorStatement = 103,
106
- ExpressionStatement = 104,
107
- EnumerationVariableList = 105,
108
- ForStatement = 106,
109
- IfStatement = 107,
110
- ElseIfClauseList = 108,
111
- ElseIfClause = 109,
112
- InvalidStatement = 110,
113
- NestedMethodDeclarationStatement = 111,
114
- LocalVariableDeclarationStatement = 112,
115
- LoopStatement = 113,
116
- ReturnStatement = 114,
117
- CaseClauseList = 115,
118
- SwitchStatement = 116,
119
- MatchExpressionList = 117,
120
- SwitchStatementCaseClause = 118,
121
- WhileStatement = 119,
122
- YieldStatement = 120,
123
- TranslationParameterList = 121,
124
- TranslationParameterClause = 122,
125
- ConstructorTranslation = 123,
126
- IndexerTranslationParameterClause = 124,
127
- IndexerTranslation = 125,
128
- TranslationTypeParameterList = 126,
129
- TranslationTypeParameterClause = 127,
130
- PackageMethodTranslation = 128,
131
- TypeMethodTranslation = 129,
132
- MethodTypeTranslation = 130,
133
- PackageImportTranslation = 131,
134
- QualifiedName = 132,
135
- PackageVariableTranslation = 133,
136
- TypeVariableOrVariantTranslation = 134,
137
- TypeMemberTranslationList = 135,
138
- TypeTranslation = 136,
139
- TextLiteralTranslation = 137,
140
- TextTemplateLiteralTranslation = 138,
141
- VariantDeclaration = 139,
142
- TypeParameterDeclaration = 140,
143
- ParameterDeclaration = 141,
144
- CallArgument = 142,
145
- TagList = 143,
146
- Tag = 144,
147
- ModifierList = 145,
148
- Modifier = 146,
149
- ParameterClause = 147,
150
- ParameterList = 148,
151
- SetterParameterClause = 149,
152
- SetterParameterDeclaration = 150,
153
- TypeArgumentClause = 151,
154
- TypeArgumentList = 152,
155
- TypeParameterClause = 153,
156
- TypeParameterList = 154,
157
- TypeAnnotation = 155
101
+ TryStatement = 99,
102
+ CatchClause = 100,
103
+ ErrorVariableDeclaration = 101,
104
+ FinallyClause = 102,
105
+ EmptyStatement = 103,
106
+ ErrorStatement = 104,
107
+ ExpressionStatement = 105,
108
+ EnumerationVariableList = 106,
109
+ ForStatement = 107,
110
+ IfStatement = 108,
111
+ ElseIfClauseList = 109,
112
+ ElseIfClause = 110,
113
+ InvalidStatement = 111,
114
+ NestedMethodDeclarationStatement = 112,
115
+ LocalVariableDeclarationStatement = 113,
116
+ LoopStatement = 114,
117
+ ReturnStatement = 115,
118
+ CaseClauseList = 116,
119
+ SwitchStatement = 117,
120
+ MatchExpressionList = 118,
121
+ SwitchStatementCaseClause = 119,
122
+ WhileStatement = 120,
123
+ YieldStatement = 121,
124
+ TranslationParameterList = 122,
125
+ TranslationParameterClause = 123,
126
+ ConstructorTranslation = 124,
127
+ IndexerTranslationParameterClause = 125,
128
+ IndexerTranslation = 126,
129
+ TranslationTypeParameterList = 127,
130
+ TranslationTypeParameterClause = 128,
131
+ PackageMethodTranslation = 129,
132
+ TypeMethodTranslation = 130,
133
+ MethodTypeTranslation = 131,
134
+ PackageImportTranslation = 132,
135
+ QualifiedName = 133,
136
+ PackageVariableTranslation = 134,
137
+ TypeVariableOrVariantTranslation = 135,
138
+ TypeMemberTranslationList = 136,
139
+ TypeTranslation = 137,
140
+ TextLiteralTranslation = 138,
141
+ TextTemplateLiteralTranslation = 139,
142
+ VariantDeclaration = 140,
143
+ TypeParameterDeclaration = 141,
144
+ ParameterDeclaration = 142,
145
+ Argument = 143,
146
+ TagList = 144,
147
+ Tag = 145,
148
+ ModifierList = 146,
149
+ Modifier = 147,
150
+ ParameterClause = 148,
151
+ ParameterList = 149,
152
+ TypeArgumentClause = 150,
153
+ TypeArgumentList = 151,
154
+ TypeParameterClause = 152,
155
+ TypeParameterList = 153,
156
+ TypeAnnotation = 154
158
157
  }