oxc/crates/oxc_semantic/tests/cfg_fixtures/function_as_expression.js
Boshen 889837704c
feat(semantic): cfg prototype (#2019)
Co-authored-by: U9G <git@u9g.dev>
2024-01-25 20:19:35 +08:00

11 lines
266 B
JavaScript

(function () { }).length
typeof (function () { });
export default (function () { })();
(function () { })()``;
(function () { })``;
new (function () { });
(function () { });
a = function f() { } || b;
(function () { } && a);
a + function () { };
new function () { };