JS: Make implicit this receivers explicit

This commit is contained in:
Kasper Svendsen
2023-05-12 12:12:48 +02:00
parent dd7a64d8e9
commit fe2f36a1fe

View File

@@ -34,7 +34,7 @@ class RamlResource extends YamlMapping {
/** Get the method for this resource with the given verb. */
RamlMethod getMethod(string verb) {
verb = httpVerb() and
result = lookup(verb)
result = this.lookup(verb)
}
}