1
- import parser , { ArgumentList , ArrayDeclaration , ArrayDeclarationElementList , AssignmentExpression , CaseClause , CaseValueList , DefaultClause , ElseClause , ElseIfClause , ElseIfClauses , FormalParameter , FormalParameterList , FunctionDeclaration , IdentifierName , IncludeStatement , LocationRange , Macro , Program , SelectCaseClause , SourceElement , SourceElements , SwitchCaseValue , VariableDeclaration , VariableDeclarationList , VariableIdentifier } from "autoit3-pegjs" ;
1
+ import parser , { ArgumentList , ArrayDeclaration , ArrayDeclarationElementList , AssignmentExpression , CaseClause , CaseValueList , DefaultClause , ElseClause , ElseIfClause , ElseIfClauses , EnumDeclaration , EnumDeclarationList , FormalParameter , FormalParameterList , FunctionDeclaration , IdentifierName , IncludeStatement , LocationRange , Macro , Program , SelectCaseClause , SourceElement , SourceElements , SwitchCaseValue , VariableDeclaration , VariableDeclarationList , VariableIdentifier } from "autoit3-pegjs" ;
2
2
import { Diagnostic , DiagnosticSeverity , Position } from "vscode-languageserver" ;
3
3
import { URI } from 'vscode-uri' ;
4
4
import Parser from "./Parser" ;
@@ -19,8 +19,8 @@ export type ScriptHint = Diagnostic & { severity: typeof DiagnosticSeverity.Hint
19
19
20
20
export type ScriptDiagnostic = ScriptError | ScriptWarning | ScriptInformation | ScriptHint ;
21
21
22
- export type Node = SourceElement | AssignmentExpression | FormalParameter | VariableDeclaration | ArrayDeclaration | DefaultClause | CaseClause | SelectCaseClause | SwitchCaseValue | Macro | IncludeStatement | ElseIfClause | ElseClause ;
23
- export type NodeList = SourceElements | ArgumentList | VariableDeclarationList | FormalParameterList | ( DefaultClause | CaseClause | SelectCaseClause ) [ ] | ArrayDeclarationElementList | CaseValueList | ElseIfClauses | ElseClause [ ] ;
22
+ export type Node = SourceElement | AssignmentExpression | FormalParameter | VariableDeclaration | EnumDeclaration | ArrayDeclaration | DefaultClause | CaseClause | SelectCaseClause | SwitchCaseValue | Macro | IncludeStatement | ElseIfClause | ElseClause ;
23
+ export type NodeList = SourceElements | ArgumentList | VariableDeclarationList | EnumDeclarationList | FormalParameterList | ( DefaultClause | CaseClause | SelectCaseClause ) [ ] | ArrayDeclarationElementList | CaseValueList | ElseIfClauses | ElseClause [ ] ;
24
24
25
25
export enum NodeFilterAction {
26
26
/** Adds the current node and continues down the branch */
@@ -716,7 +716,7 @@ export default class Script {
716
716
* @param functions Function map for fallback lookups
717
717
* @param depth Recursive depth tracking variable
718
718
*/
719
- public getIdentifierDeclarator ( identifier : IdentifierName | VariableIdentifier | Macro | null , stack : string [ ] = [ ] , functions : FunctionDeclaration [ ] = [ ] , depth : number = 0 ) : FormalParameter | FunctionDeclaration | VariableDeclaration | null {
719
+ public getIdentifierDeclarator ( identifier : IdentifierName | VariableIdentifier | Macro | null , stack : string [ ] = [ ] , functions : FunctionDeclaration [ ] = [ ] , depth : number = 0 ) : FormalParameter | FunctionDeclaration | VariableDeclaration | EnumDeclaration | null {
720
720
if ( identifier === null || identifier . type === "Macro" ) {
721
721
return null ;
722
722
}
@@ -731,7 +731,7 @@ export default class Script {
731
731
stack . push ( uri ) ;
732
732
}
733
733
734
- let declaration : FormalParameter | FunctionDeclaration | VariableDeclaration | undefined | null ;
734
+ let declaration : FormalParameter | FunctionDeclaration | VariableDeclaration | EnumDeclaration | undefined | null ;
735
735
736
736
switch ( identifier . type ) {
737
737
case "Identifier" :
0 commit comments