enhance "functions" (#4791)

This commit is contained in:
Alex Lam S.L
2021-03-16 21:38:33 +00:00
committed by GitHub
parent b872ffee01
commit b244b4ec21
4 changed files with 156 additions and 37 deletions

View File

@@ -614,14 +614,14 @@ functions: {
async function b() {
return !!b;
}
var c = async function(c) {
async function c(c) {
return c;
};
}
if (await c(await b(await a()))) {
async function d() {}
async function e() {
return typeof e;
}
var d = async function() {};
var e = async function y() {
return typeof y;
};
var f = async function(f) {
return f;
};
@@ -672,9 +672,9 @@ functions_use_strict: {
async function b() {
return !!b;
}
var c = async function(c) {
async function c(c) {
return c;
};
}
if (await c(await b(await a()))) {
var d = async function() {};
var e = async function y() {
@@ -691,6 +691,54 @@ functions_use_strict: {
node_version: ">=8"
}
functions_anonymous: {
options = {
functions: true,
reduce_vars: true,
toplevel: true,
unused: true,
}
input: {
var await = async function() {
console.log("PASS");
};
await(await);
}
expect: {
async function await() {
console.log("PASS");
}
await();
}
expect_stdout: "PASS"
node_version: ">=8"
}
functions_inner_var: {
options = {
functions: true,
reduce_vars: true,
toplevel: true,
unused: true,
}
input: {
var await = function a() {
var a;
console.log(a, a);
};
await(await);
}
expect: {
function await() {
var a;
console.log(a, a);
}
await();
}
expect_stdout: "undefined undefined"
node_version: ">=8"
}
issue_4335_1: {
options = {
inline: true,