mirror of
https://github.com/github/codeql.git
synced 2026-01-29 14:23:03 +01:00
Fix up hasLocationInfo predicate.
This commit is contained in:
@@ -809,7 +809,7 @@ private class ReadStoreNodeExt extends CastingNodeExt, TReadStoreNode {
|
||||
override predicate hasLocationInfo(
|
||||
string filepath, int startline, int startcolumn, int endline, int endcolumn
|
||||
) {
|
||||
arg.getLocation().hasLocationInfo(filepath, startline, startcolumn, endline, endcolumn)
|
||||
arg.hasLocationInfo(filepath, startline, startcolumn, endline, endcolumn)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -833,7 +833,7 @@ private class ReadTaintNode extends NodeExt, TReadTaintNode {
|
||||
override predicate hasLocationInfo(
|
||||
string filepath, int startline, int startcolumn, int endline, int endcolumn
|
||||
) {
|
||||
arg.getLocation().hasLocationInfo(filepath, startline, startcolumn, endline, endcolumn)
|
||||
arg.hasLocationInfo(filepath, startline, startcolumn, endline, endcolumn)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -857,7 +857,7 @@ private class TaintStoreNode extends NodeExt, TTaintStoreNode {
|
||||
override predicate hasLocationInfo(
|
||||
string filepath, int startline, int startcolumn, int endline, int endcolumn
|
||||
) {
|
||||
arg.getLocation().hasLocationInfo(filepath, startline, startcolumn, endline, endcolumn)
|
||||
arg.hasLocationInfo(filepath, startline, startcolumn, endline, endcolumn)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user