@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.
- package/build/Cli.js +3 -3
- package/build/api/Api.js +10 -62
- package/build/api/ApiNodeJS.js +3 -3
- package/build/api/ApiServices.js +1044 -1001
- package/build/{chunk-HN3XZZQX.js → chunk-FI6LW2RD.js} +5 -4
- package/build/{chunk-TXAEJ2GI.js → chunk-SK7ZBC3X.js} +15375 -15317
- package/build/{chunk-CMPXXHBQ.js → chunk-TQDMVKTN.js} +13 -5
- package/build/types/analysis/AnalyzedTranslationPackage.d.ts +4 -26
- package/build/types/analysis/Analyzer.d.ts +27 -69
- package/build/types/analysis/{CallArgumentToParameterMatchResult.d.ts → ArgumentToParameterMatchResult.d.ts} +4 -4
- package/build/types/analysis/{CallArgumentsToParametersMatcher.d.ts → ArgumentsToParametersMatcher.d.ts} +14 -14
- package/build/types/analysis/ConstructorOverloadResolver.d.ts +1 -1
- package/build/types/analysis/DereferenceExpressionMeaning.d.ts +3 -3
- package/build/types/analysis/DiagnosticCollector.d.ts +2 -0
- package/build/types/analysis/FindModifier.d.ts +2 -0
- package/build/types/analysis/IdentifierExpressionMeaning.d.ts +14 -12
- package/build/types/analysis/LocalizationContext.d.ts +4 -5
- package/build/types/analysis/Lookup.d.ts +8 -7
- package/build/types/analysis/ModifierFlags.d.ts +16 -0
- package/build/types/analysis/NamedTypeSpecifierResolver.d.ts +0 -1
- package/build/types/analysis/NodeTypeUtils.d.ts +1 -0
- package/build/types/analysis/OperationOverloadResolver.d.ts +2 -2
- package/build/types/analysis/OverloadResolver.d.ts +4 -4
- package/build/types/analysis/PackageMemberLookup.d.ts +5 -6
- package/build/types/analysis/PropertyAccessExpressionMeaning.d.ts +18 -16
- package/build/types/analysis/Scope.d.ts +21 -116
- package/build/types/analysis/SemanticContext.d.ts +16 -6
- package/build/types/analysis/SemanticContextBuilder.d.ts +1 -1
- package/build/types/analysis/SourceFileMembers.d.ts +12 -99
- package/build/types/analysis/TagMeaning.d.ts +57 -9
- package/build/types/analysis/Tags.d.ts +2 -2
- package/build/types/analysis/TypeMemberLookup.d.ts +15 -15
- package/build/types/analysis/TypeOverloadResolver.d.ts +1 -1
- package/build/types/analysis/WellKnownDeclarations.d.ts +1 -0
- package/build/types/analysis/index.d.ts +1 -1
- package/build/types/api/Api.d.ts +2 -6
- package/build/types/diagnostic/DiagnosticCode.d.ts +20 -16
- package/build/types/emitter/{EmitterGeneratedDeclarationKind.d.ts → EmitPhaseName.d.ts} +1 -44
- package/build/types/emitter/EmitterContext.d.ts +4 -1
- package/build/types/emitter/Entities.d.ts +52 -16
- package/build/types/emitter/EntityMap.d.ts +1 -3
- package/build/types/emitter/IrBuilder.d.ts +6 -2
- package/build/types/emitter/IrToJs.d.ts +5 -4
- package/build/types/emitter/Transformer.d.ts +18 -10
- package/build/types/emitter/ir/EmitOptions.d.ts +163 -0
- package/build/types/emitter/ir/Nodes.d.ts +206 -167
- package/build/types/emitter/ir/index.d.ts +1 -2
- package/build/types/emitter/ir/types.d.ts +3 -3
- package/build/types/entities/AliasTypeEntity.d.ts +8 -4
- package/build/types/entities/ConstructorEntity.d.ts +2 -0
- package/build/types/entities/DereferenceOperatorEntity.d.ts +5 -3
- package/build/types/entities/DestructorEntity.d.ts +2 -0
- package/build/types/entities/GetterEntity.d.ts +8 -0
- package/build/types/entities/IndexerEntity.d.ts +5 -3
- package/build/types/entities/MethodEntity.d.ts +9 -5
- package/build/types/entities/MethodTypeEntity.d.ts +10 -5
- package/build/types/entities/OperatorEntity.d.ts +5 -3
- package/build/types/entities/PackageEntity.d.ts +3 -3
- package/build/types/entities/PackageMembers.d.ts +4 -90
- package/build/types/entities/SetterEntity.d.ts +8 -0
- package/build/types/entities/StructuredTypeEntity.d.ts +11 -6
- package/build/types/entities/TypeEntity.d.ts +15 -0
- package/build/types/entities/TypeExtensionEntity.d.ts +2 -0
- package/build/types/entities/TypeParameterEntity.d.ts +11 -6
- package/build/types/entities/VariableEntity.d.ts +50 -41
- package/build/types/entities/VariantTypeEntity.d.ts +10 -11
- package/build/types/entities/index.d.ts +17 -25
- package/build/types/executor/Compiler.d.ts +1 -0
- package/build/types/executor/NodeCompiler.d.ts +1 -0
- package/build/types/parser/CharacterCodes.d.ts +8 -0
- package/build/types/parser/ReservedIdentifierDictionary.d.ts +1 -2
- package/build/types/project/FileSystemTree.d.ts +2 -2
- package/build/types/services/CompletionService.d.ts +4 -1
- package/build/types/services/DisplayService.d.ts +18 -2
- package/build/types/services/NodeSemanticInfo.d.ts +7 -5
- package/build/types/services/signature-help/SignatureWithValueParameters.d.ts +7 -21
- package/build/types/services/signature-help/TypeParameterSignatureHelpProvider.d.ts +1 -0
- package/build/types/services/source-generation/EntityToSyntax.d.ts +1 -1
- package/build/types/services/source-generation/SourceGenerationService.d.ts +2 -2
- package/build/types/services/workspace/ClientTrackedSourceFiles.d.ts +5 -5
- package/build/types/services/workspace/CompilationController.d.ts +3 -3
- package/build/types/services/workspace/FileSystemTreeProviderBasedOnWatchedFileSystem.d.ts +4 -4
- package/build/types/services/workspace/ManuallyUpdatedFileSystemTreeProvider.d.ts +4 -4
- package/build/types/services/workspace/Workspace.d.ts +3 -3
- package/build/types/services/workspace/WorkspaceFiles.d.ts +7 -7
- package/build/types/tree/KeywordKind.d.ts +37 -37
- package/build/types/tree/NodeKind.d.ts +57 -58
- package/build/types/tree/green/Nodes.d.ts +57 -71
- package/build/types/tree/green/SyntaxFactory.d.ts +4 -5
- package/build/types/tree/green/SyntaxToCode.d.ts +1 -2
- package/build/types/tree/red/Nodes.d.ts +65 -79
- package/build/types/ts-interop/Entities.d.ts +51 -28
- package/build/types/ts-interop/TsPackageMembersCreator.d.ts +0 -1
- package/build/types/types/TypeMembers.d.ts +9 -0
- package/package.json +2 -2
- package/build/types/analysis/DereferencedVariableAccess.d.ts +0 -14
- package/build/types/analysis/IndexedAccess.d.ts +0 -14
- package/build/types/analysis/VariableAccess.d.ts +0 -14
- package/build/types/analysis/VariantLookup.d.ts +0 -20
- package/build/types/emitter/ir/LoweringOptions.d.ts +0 -36
- package/build/types/emitter/ir/LoweringState.d.ts +0 -49
- package/build/types/entities/VariantEntity.d.ts +0 -31
- package/build/types/entities/Variants.d.ts +0 -10
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Indicator,
|
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
|
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
|
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 {
|
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
|
7
|
+
export declare class FileSystemTreeProviderBasedOnWatchedFileSystem extends TriggeringObject implements FileSystemTreeProvider {
|
8
8
|
readonly fileSystemTree: fsTree.FileSystemTree;
|
9
|
-
readonly loadedWorkspaceFolderByUri:
|
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:
|
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 {
|
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
|
7
|
+
export declare class ManuallyUpdatedFileSystemTreeProvider extends TriggeringObject implements FileSystemTreeProvider {
|
8
8
|
readonly fileSystemTree: fsTree.FileSystemTree;
|
9
|
-
readonly loadedWorkspaceFolderByUri:
|
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:
|
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 {
|
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
|
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():
|
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 {
|
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
|
5
|
+
export declare class WorkspaceFiles extends TriggeringObject {
|
6
6
|
readonly trackedSourceFiles: ClientTrackedSourceFiles;
|
7
|
-
readonly workspaceFolderUris:
|
8
|
-
readonly workspaceFolderWithArtelProjectByUri:
|
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():
|
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:
|
28
|
+
readonly loadedWorkspaceFolderByUri: TriggeringMap<string, fsTree.Directory>;
|
29
29
|
/**
|
30
30
|
* Должен быть вызван до вызова всех остальных методов.
|
31
31
|
*/
|
32
|
-
initialize(workspaceFolderUris:
|
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
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
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
|
-
|
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
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
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
|
}
|