ignore user whitespace when splitting up module declaration - fixes #906

This commit is contained in:
Sebastian McKenzie
2015-02-27 15:25:13 +11:00
parent 166b2eda87
commit a4382580fc
17 changed files with 43 additions and 8 deletions

View File

@@ -0,0 +1,3 @@
export function foo() {}
export function bar() {}

View File

@@ -0,0 +1,9 @@
"use strict";
export { foo as foo };
export { bar as bar };
function foo() {}
function bar() {}

View File

@@ -0,0 +1,3 @@
{
"blacklist": ["es6.modules"]
}