ignore _generated FunctionDeclarations too in es6.spec.symbols transformer

This commit is contained in:
Sebastian McKenzie 2015-05-03 17:40:30 +01:00
parent ce8beec22c
commit f0070e4828
2 changed files with 3 additions and 0 deletions

View File

@ -387,6 +387,7 @@ export default class File {
unique: true
});
}
return uid;
}

View File

@ -33,3 +33,5 @@ export function BinaryExpression(node, parent, scope, file) {
export function VariableDeclaration(node) {
if (node._generated) this.skip();
}
export { VariableDeclaration as FunctionDeclaration };