mirror of
https://github.com/github/codeql.git
synced 2026-05-10 17:29:26 +02:00
9 lines
93 B
JavaScript
9 lines
93 B
JavaScript
class Foo {
|
|
bar(){
|
|
this.baz(42);
|
|
}
|
|
static baz(x){
|
|
// ...
|
|
}
|
|
}
|