mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
30 lines
437 B
JavaScript
30 lines
437 B
JavaScript
function f(errorMessage) {
|
|
return errorMesage;
|
|
}
|
|
|
|
function g(errorMesage) {
|
|
return errorMessage;
|
|
}
|
|
|
|
function h(errorMessage) {
|
|
function inner() {
|
|
return errorMesage;
|
|
}
|
|
}
|
|
|
|
function k(errorMesage) {
|
|
let inner = () =>
|
|
errorMessage;
|
|
}
|
|
|
|
function foo() {
|
|
var thisHander;
|
|
thisHandler.foo1;
|
|
thisHandler.foo2;
|
|
thisHandler.foo3;
|
|
thisHandler.foo4;
|
|
thisHandler.foo5;
|
|
thisHandler.foo6;
|
|
thisHandler.foo7;
|
|
thisHandler.foo8;
|
|
} |