mirror of
https://github.com/github/codeql.git
synced 2026-05-05 13:45:19 +02:00
JS: Make implicit this receivers explicit
This commit is contained in:
@@ -21,8 +21,8 @@ class DecodingCall extends CallNode {
|
||||
Node input;
|
||||
|
||||
DecodingCall() {
|
||||
getCalleeName().matches("decodeURI%") and
|
||||
input = getArgument(0) and
|
||||
this.getCalleeName().matches("decodeURI%") and
|
||||
input = this.getArgument(0) and
|
||||
kind = "URI decoding"
|
||||
or
|
||||
input = this.(JsonParserCall).getInput() and
|
||||
|
||||
Reference in New Issue
Block a user