mirror of
https://github.com/github/codeql.git
synced 2025-12-25 13:16:33 +01:00
9 lines
93 B
JavaScript
9 lines
93 B
JavaScript
class Foo {
|
|
bar(){
|
|
this.baz(42);
|
|
}
|
|
static baz(x){
|
|
// ...
|
|
}
|
|
}
|