Skip to content

Commit 9f06e13

Browse files
committed
Python: Fix incomplete renaming in Thrift.qll.
1 parent 02363d7 commit 9f06e13

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/ql/src/external/Thrift.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ class ThriftElement extends ExternalData {
5252
exists(ThriftElement first, ThriftElement last |
5353
first = this.getChild(min(int l | exists(this.getChild(l)))) and
5454
last = this.getChild(max(int l | exists(this.getChild(l)))) and
55-
first.hasLocationInfo(fp, bl, bc, _, _) and
56-
last.hasLocationInfo(fp, _, _, el, ec)
55+
first.hasLocationInfo(filepath, startline, startcolumn, _, _) and
56+
last.hasLocationInfo(filepath, _, _, endline, endcolumn)
5757
)
5858
}
5959

0 commit comments

Comments
 (0)