From 3ee51dae1aaa49dc573d126af40e0037cc0ac782 Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Fri, 14 Nov 2014 00:59:18 +1100 Subject: [PATCH] fix semicolon --- test/fixtures/generation/harmony-edgecase/exports/expected.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fixtures/generation/harmony-edgecase/exports/expected.js b/test/fixtures/generation/harmony-edgecase/exports/expected.js index bc1adc1d44..269678f691 100644 --- a/test/fixtures/generation/harmony-edgecase/exports/expected.js +++ b/test/fixtures/generation/harmony-edgecase/exports/expected.js @@ -4,6 +4,6 @@ export { a as b, c as d } from "hello"; export { a as b, c as d }; export {}; export default i = 20; -export function test() {}; +export function test() {} export var i = 20; export let i = 42;