add missing semi

This commit is contained in:
Sebastian McKenzie 2015-06-26 02:25:46 +01:00
parent 29eb99ee93
commit a265c3f25c

View File

@ -14,7 +14,7 @@ function remap(path, key, create) {
if (shadowed) {
return path.node === shadowed;
} else {
return !path.is("shadow") && (path.isFunction() || path.isProgram())
return !path.is("shadow") && (path.isFunction() || path.isProgram());
}
});