Fix #931: Create arrow functions in maybe_assign so that they can be used in assignments
This commit is contained in:
@@ -36,6 +36,17 @@ regression_arrow_functions_and_hoist: {
|
||||
expect_exact: "a=>b;"
|
||||
}
|
||||
|
||||
regression_assign_arrow_functions: {
|
||||
input: {
|
||||
oninstall = e => false;
|
||||
oninstall = () => false;
|
||||
}
|
||||
expect: {
|
||||
oninstall=e=>false;
|
||||
oninstall=()=>false;
|
||||
}
|
||||
}
|
||||
|
||||
computed_property_names: {
|
||||
input: {
|
||||
obj({ ["x" + "x"]: 6 });
|
||||
|
||||
Reference in New Issue
Block a user