Files
codeql/javascript/ql/test/library-tests/IIFE/tst.js
2018-08-02 17:53:23 +01:00

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);