File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
ql/lib/codeql/bicep/ast/internal Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 6
6
private import AstNodes
7
7
private import TreeSitter
8
8
private import codeql.bicep.ast.AstNodes
9
+ private import Stmts
9
10
private import Idents
10
11
private import Expr
11
12
private import Type
12
13
13
14
/**
14
15
* A OutputDeclaration AST Node.
15
16
*/
16
- class OutputDeclarationImpl extends TOutputDeclaration , AstNode {
17
+ class OutputDeclarationImpl extends TOutputDeclaration , StmtsImpl {
17
18
private BICEP:: OutputDeclaration ast ;
18
19
19
20
override string getAPrimaryQlClass ( ) { result = "OutputDeclaration" }
Original file line number Diff line number Diff line change 7
7
private import AstNodes
8
8
private import TreeSitter
9
9
private import codeql.bicep.ast.AstNodes
10
+ private import Stmts
10
11
private import Identifier
11
12
private import Type
12
13
private import Expr
13
14
14
15
/**
15
16
* A ParameterDeclaration AST Node.
16
17
*/
17
- class ParameterDeclarationImpl extends TParameterDeclaration , AstNode {
18
+ class ParameterDeclarationImpl extends TParameterDeclaration , StmtsImpl {
18
19
private BICEP:: ParameterDeclaration ast ;
19
20
20
21
override string getAPrimaryQlClass ( ) { result = "ParameterDeclaration" }
Original file line number Diff line number Diff line change 7
7
private import AstNodes
8
8
private import TreeSitter
9
9
private import codeql.bicep.ast.AstNodes
10
+ private import Stmts
10
11
private import Identifier
11
12
private import Stmts
12
13
private import Type
@@ -16,7 +17,7 @@ private import Parameters
16
17
/**
17
18
* A UserDefinedFunction AST Node.
18
19
*/
19
- class UserDefinedFunctionImpl extends TUserDefinedFunction , AstNode {
20
+ class UserDefinedFunctionImpl extends TUserDefinedFunction , StmtsImpl {
20
21
private BICEP:: UserDefinedFunction ast ;
21
22
22
23
override string getAPrimaryQlClass ( ) { result = "UserDefinedFunction" }
You can’t perform that action at this time.
0 commit comments