mirror of
https://github.com/github/codeql.git
synced 2026-05-30 02:51:24 +02:00
18 lines
387 B
JavaScript
18 lines
387 B
JavaScript
(async function(){
|
|
f(endpoint);
|
|
f({p: endpoint});
|
|
f({p: {q: endpoint}});
|
|
o.m(endpoint);
|
|
o.m({p: endpoint});
|
|
o.m({p: {q: endpoint}});
|
|
new F(endpoint);
|
|
o.m().m().m(endpoint);
|
|
f()(endpoint);
|
|
o[x].m(endpoint);
|
|
o.m[x].p.m(endpoint);
|
|
(await p)(endpoint);
|
|
import("foo").bar.baz(endpoint);
|
|
function foo() {
|
|
bar(endpoint);
|
|
}
|
|
}); |