Skip to content

Commit bf7ac72

Browse files
committed
fix: restore correct super.count() comment in inheritance fixture
1 parent 23ae37a commit bf7ac72

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/benchmarks/resolution/fixtures/javascript/inheritance.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ export class Counter {
2929

3030
export class DoubleCounter extends Counter {
3131
static count() {
32-
return super.count() * 2; // static super.method() → Counter.count
32+
return super.count() * 2; // static super.count() → Counter.count via CHA parents map
3333
}
3434
}

0 commit comments

Comments
 (0)