summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorStephan Seitz <stephan.seitz@fau.de>2022-08-29 23:31:11 +0200
committerStephan Seitz <stephan.seitz@fau.de>2022-09-11 04:16:06 -0700
commitf66a911a953729f79b1e523a5e950dfdece39902 (patch)
tree8f6099044155e372888a2e271cc9ab35dc6718d0 /tests
parentc557c68729eba7e02166f57b529fe3c0d3c447bb (diff)
highlights(ecma): use `@method.call`/`function.call`
Diffstat (limited to 'tests')
-rw-r--r--tests/query/highlights/ecma/test.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/query/highlights/ecma/test.ts b/tests/query/highlights/ecma/test.ts
index e3c73d6a..03081fb2 100644
--- a/tests/query/highlights/ecma/test.ts
+++ b/tests/query/highlights/ecma/test.ts
@@ -15,11 +15,11 @@ class H {
public_method() {
// ^ method
return this.#private_method();
- // ^ method
+ // ^ method.call
}
ok() {
return this.public_method();
- // ^ method
+ // ^ method.call
}
}