This commit is contained in:
alexlamsl 2017-06-24 03:18:00 +08:00
parent 34150fb071
commit e810d53a49

View File

@ -246,3 +246,10 @@ async_arrow: {
let a5 = async ({x = [1], y: z = 2}) => { await wow(x, z); }
}
}
async_arrow_wait: {
input: {
var a = async (x, y) => await x(y);
}
expect_exact: "var a=async(x,y)=>await x(y);"
}