UglifyJS/lib/node.js

36 lines
891 B
JavaScript
Raw Normal View History

2012-05-27 11:36:51 +00:00
#! /usr/bin/env node
2012-05-27 14:25:31 +00:00
(function(){
2012-05-27 11:36:51 +00:00
2012-05-27 14:25:31 +00:00
var fs = require("fs");
var vm = require("vm");
var sys = require("util");
2012-05-27 11:36:51 +00:00
2012-05-27 14:25:31 +00:00
function load_global(file) {
var code = fs.readFileSync(file, "utf8");
return vm.runInThisContext(code, file);
};
2012-05-27 11:36:51 +00:00
2012-05-27 14:25:31 +00:00
load_global("./utils.js");
load_global("./ast.js");
load_global("./parse.js");
2012-08-16 15:11:04 +00:00
load_global("./output.js");
2012-05-27 11:36:51 +00:00
2012-05-27 14:25:31 +00:00
///
2012-05-27 11:36:51 +00:00
2012-05-27 14:25:31 +00:00
var filename = process.argv[2];
console.time("parse");
var ast = parse(fs.readFileSync(filename, "utf8"));
console.timeEnd("parse");
2012-08-16 15:11:04 +00:00
// console.time("walk");
// var w = new TreeWalker(function(node){
// console.log(node.TYPE + " [ start: " + node.start.line + ":" + node.start.col + ", end: " + node.end.line + ":" + node.end.col + "] " + node.name);
// });
// ast.walk(w);
// console.timeEnd("walk");
//console.log(JSON.stringify(ast));
2012-05-27 14:25:31 +00:00
})();