add test: export_default_arrow

This commit is contained in:
kzc 2017-12-16 18:28:57 -05:00
parent d08dc6cf73
commit beb87142ca

View File

@ -272,6 +272,13 @@ export_default_anonymous_function: {
expect_exact: "export default function(){foo()};"
}
export_default_arrow: {
input: {
export default () => foo();
}
expect_exact: "export default()=>foo();"
}
export_default_anonymous_generator: {
input: {
export default function * () {