mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
14 lines
162 B
JavaScript
14 lines
162 B
JavaScript
function f() {
|
|
function inner() {}
|
|
let arrow = () => 5;
|
|
|
|
class C {
|
|
method() {}
|
|
};
|
|
|
|
let obj = {
|
|
get getter() {},
|
|
set setter(x) {}
|
|
};
|
|
}
|