Skip to content

Commit 9b97dbd

Browse files
author
Alvaro Muñoz
committed
Refactor ast nodes
1 parent 86075c9 commit 9b97dbd

File tree

15 files changed

+1287
-1128
lines changed

15 files changed

+1287
-1128
lines changed

ql/lib/codeql/Locations.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/** Provides classes for working with locations. */
22

33
import files.FileSystem
4-
import codeql.actions.Ast
4+
import codeql.actions.ast.internal.Ast
55

66
bindingset[loc]
77
pragma[inline_late]
@@ -19,7 +19,7 @@ newtype TLocation =
1919
locations_default(_, file, startline, startcolumn, endline, endcolumn)
2020
)
2121
or
22-
exists(ExpressionNode e |
22+
exists(ExpressionImpl e |
2323
e.hasLocationInfo(filepath, startline, startcolumn, endline, endcolumn)
2424
)
2525
or

0 commit comments

Comments
 (0)