compressor successfully moved to TreeTransformer

This commit is contained in:
Mihai Bazon
2012-09-26 13:04:54 +03:00
parent a24e7ee976
commit 78be8f5296
3 changed files with 184 additions and 334 deletions

View File

@@ -106,6 +106,13 @@ function defaults(args, defs) {
return ret;
};
function merge(obj, ext) {
for (var i in ext) if (HOP(ext, i)) {
obj[i] = ext[i];
}
return obj;
};
function noop() {};
var MAP = (function(){