Skip to content

Commit c91d1cf

Browse files
authored
Merge pull request github#13145 from kaspersv/kaspersv/javascript-implicit-this-receiver3
JS: Make implicit this receivers explicit
2 parents 72c6919 + fe2f36a commit c91d1cf

File tree

1 file changed

+1
-1
lines changed
  • javascript/ql/test/tutorials/Validating RAML-based APIs

1 file changed

+1
-1
lines changed

javascript/ql/test/tutorials/Validating RAML-based APIs/RAML.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class RamlResource extends YamlMapping {
3434
/** Get the method for this resource with the given verb. */
3535
RamlMethod getMethod(string verb) {
3636
verb = httpVerb() and
37-
result = lookup(verb)
37+
result = this.lookup(verb)
3838
}
3939
}
4040

0 commit comments

Comments
 (0)