Skip to content

Commit fe2f36a

Browse files
committed
JS: Make implicit this receivers explicit
1 parent dd7a64d commit fe2f36a

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)