mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
The history of updates to this test got messed up so just squashing into one commit. Some possible regressions have been accepted, but the query is strangely opinionated so it's just hard to say what it ought to flag.
12 lines
176 B
JavaScript
12 lines
176 B
JavaScript
var Mod1;
|
|
(function (Mod1) {
|
|
Mod1.p = 42;
|
|
})(Mod1 || (Mod1 = {}));
|
|
|
|
(function(){
|
|
var Mod2;
|
|
(function (Mod2) {
|
|
Mod2.p = 42;
|
|
})(Mod2 || (Mod2 = {}));
|
|
});
|