mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
18 lines
184 B
JavaScript
18 lines
184 B
JavaScript
(function(x) {
|
|
})(23);
|
|
|
|
(function(y) {
|
|
}(42));
|
|
|
|
!function(z) {
|
|
}.call(window, 56);
|
|
|
|
new function(a) {
|
|
}(72);
|
|
|
|
(function(b) {
|
|
}.apply(this, args));
|
|
|
|
// not an IIFE
|
|
function g() {
|
|
}(23); |