suppress hoist_props on export (#2463)
Miscellaneous - fix double semi-colons from `beautify` in `export` fixes #2462
This commit is contained in:
@@ -250,3 +250,13 @@ dynamic_import: {
|
||||
r.foo();
|
||||
}
|
||||
}
|
||||
|
||||
trailing_comma: {
|
||||
beautify = {
|
||||
beautify: true,
|
||||
}
|
||||
input: {
|
||||
export const a = 1;
|
||||
}
|
||||
expect_exact: "export const a = 1;"
|
||||
}
|
||||
|
||||
@@ -511,3 +511,22 @@ new_this: {
|
||||
}
|
||||
expect_stdout: "1 2"
|
||||
}
|
||||
|
||||
issue_2462: {
|
||||
options = {
|
||||
hoist_props: true,
|
||||
reduce_vars: true,
|
||||
}
|
||||
input: {
|
||||
export const Foo = {
|
||||
a: 1,
|
||||
b: () => 2
|
||||
};
|
||||
}
|
||||
expect: {
|
||||
export const Foo = {
|
||||
a: 1,
|
||||
b: () => 2
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user