mirror of
https://github.com/github/codeql.git
synced 2026-05-01 11:45:14 +02:00
8 lines
96 B
JavaScript
8 lines
96 B
JavaScript
class Foo {
|
|
static bar() {
|
|
this.baz; // OK
|
|
}
|
|
static baz() {}
|
|
baz() {}
|
|
}
|