From c85da9ab79ef99d6ea3e1e5aeed337b453d103df Mon Sep 17 00:00:00 2001 From: kounelios13 Date: Mon, 8 Feb 2016 12:29:28 +0200 Subject: [PATCH] removed commented function --- tools/node.js | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/tools/node.js b/tools/node.js index fa8c19dc..dcbaa7ec 100644 --- a/tools/node.js +++ b/tools/node.js @@ -137,19 +137,6 @@ exports.minify = function(files, options) { }; }; -// exports.describe_ast = function() { -// function doitem(ctor) { -// var sub = {}; -// ctor.SUBCLASSES.forEach(function(ctor){ -// sub[ctor.TYPE] = doitem(ctor); -// }); -// var ret = {}; -// if (ctor.SELF_PROPS.length > 0) ret.props = ctor.SELF_PROPS; -// if (ctor.SUBCLASSES.length > 0) ret.sub = sub; -// return ret; -// } -// return doitem(UglifyJS.AST_Node).sub; -// } exports.describe_ast = function() { var out = UglifyJS.OutputStream({ beautify: true });