File tree Expand file tree Collapse file tree 3 files changed +406
-3
lines changed
lib/codeql/bicep/ast/internal Expand file tree Collapse file tree 3 files changed +406
-3
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,6 @@ newtype TAstNode =
52
52
TParenthesizedType ( BICEP:: ParenthesizedType r ) or
53
53
TPrimaryExpression ( BICEP:: PrimaryExpression r ) or
54
54
TPrimitiveType ( BICEP:: PrimitiveType r ) or
55
- TReservedWord ( BICEP:: ReservedWord r ) or
56
55
TPropertyIdentifier ( BICEP:: PropertyIdentifier r ) or
57
56
TResourceDeclaration ( BICEP:: ResourceDeclaration r ) or
58
57
TResourceExpression ( BICEP:: ResourceExpression r ) or
@@ -155,7 +154,6 @@ BICEP::AstNode toTreeSitter(TAstNode n) {
155
154
n = TPrimaryExpression ( result ) or
156
155
n = TPrimitiveType ( result ) or
157
156
n = TPropertyIdentifier ( result ) or
158
- n = TReservedWord ( result ) or
159
157
n = TResourceDeclaration ( result ) or
160
158
n = TResourceExpression ( result ) or
161
159
n = TStatement ( result ) or
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 ReservedWord
10
9
11
10
/**
12
11
* A Type AST Node.
You can’t perform that action at this time.
0 commit comments