UglifyJS.git
2012-09-17 Mihai Bazononly do the typeof x == "undefined" optimization if...
2012-09-17 Mihai Bazonmoved `typeof foo == "undefined"` ==> `foo === undefine...
2012-09-17 Mihai Bazonfix .undeclared (it's now a function)
2012-09-17 Mihai Bazonminor
2012-09-17 Mihai Bazonone more test for sequences
2012-09-17 Mihai Bazonpossible optimization for AST_Undefined
2012-09-17 Mihai Bazonempty block to empty statement: {} ==> ;
2012-09-17 Mihai Bazonmore smallish optimizations
2012-09-17 Mihai Bazontry negating AST_Binary
2012-09-16 Mihai Bazonsome cleanup
2012-09-16 Mihai Bazonmore sequencesizing (WIP)
2012-09-16 Mihai Bazondrop unused function
2012-09-16 Mihai Bazonrewrite handle_if_return
2012-09-15 Mihai Bazonother small optimization:
2012-09-15 Mihai Bazonfigure out label targets
2012-09-15 Mihai Bazonjoin_vars:
2012-09-14 Mihai Bazoncompress typeof x == "undefined" to x === undefined...
2012-09-14 Mihai Bazonminor
2012-09-14 Mihai Bazonadding an imaginary "return undefined" can sometimes...
2012-09-14 Mihai Bazonmore optimizations that v1 does and some cleanups
2012-09-13 Mihai Bazonadded -m and -c options
2012-09-13 Mihai Bazonfew more optimizations:
2012-09-12 Mihai Bazonminor
2012-09-12 Mihai Bazonmore AST_If optimizations
2012-09-12 Mihai Bazonside effect fixes and small optimization for gzip
2012-09-12 Mihai Bazonfixed run-tests and an issue about reversing the condit...
2012-09-11 Mihai Bazonminor
2012-09-11 Mihai Bazonfixed some mess with symbols/scope
2012-09-11 Mihai Bazoncheckpoint
2012-09-10 Mihai Bazonhoist_vars is pretty bad, it seems. cancelled it for...
2012-09-10 Mihai Bazonadaptive base54 digits depending on char frequency...
2012-09-10 Mihai Bazonmore progress on the compressor (WIP)
2012-09-10 Mihai Bazonfix "file" in the source map
2012-09-08 Mihai Bazonminor
2012-09-08 Mihai Bazonfix output for division followed by regexp
2012-09-07 Mihai Bazoncheckpoint
2012-09-07 Mihai Bazonfix bug (forgot arg name)
2012-09-07 Mihai Bazonalways keep declarations found in unreachable code
2012-09-07 Mihai Bazonfixed tests (need to drop the toplevel block in "expect...
2012-09-05 Mihai Bazondon't duplicate argument names
2012-09-05 Mihai Bazondeclared `--stats` as boolean
2012-09-05 Mihai Bazonfix for variable names like `toString`
2012-09-05 Mihai Bazonsupport for hoisting declarations
2012-09-05 Mihai Bazoncleaned up usage of AST_BlockStatement
2012-09-04 Mihai Bazoncheckpoint
2012-09-04 Mihai Bazonmore fiddling with boolean expressions, etc.
2012-09-04 Mihai Bazonif present, the `else` in an `if` should always be...
2012-09-03 Mihai Bazonboolean and if/exit optimizations
2012-09-03 Mihai Bazonminor
2012-09-03 Mihai Bazonmore optimizations for ifs/conditionals
2012-09-03 Mihai Bazonresolve constant expressions
2012-09-03 Mihai Bazonjumps, try and definitions are statements too
2012-09-03 Mihai Bazonan AST_If is too a StatementWithBody
2012-09-03 Mihai Bazona LabeledStatement should be in fact a StatementWithBody
2012-09-03 Mihai Bazondeclare boolean options
2012-09-03 Mihai Bazonswitch branches must be declared `required` so that...
2012-09-03 Mihai BazonReverting "minor perf. improvements"
2012-09-03 Mihai Bazonadd -b
2012-09-02 Mihai Bazonadd source mappings for more node types; started CLI...
2012-09-02 Mihai Bazonminor perf. improvements
2012-08-29 Mihai Bazonstarted support for generating source maps (WIP)
2012-08-29 Mihai Bazondon't mangle names of setters/getters
2012-08-29 Mihai Bazonupdate with link to discussion about Esprima vs. Uglify...
2012-08-28 Mihai Bazondocstring for AST_StatementWithBody
2012-08-28 Mihai Bazonfix output for arrays containing undefined values
2012-08-28 Mihai Bazonfix code generator for this case:
2012-08-27 Mihai Bazonadded README
2012-08-27 Mihai Bazonminor
2012-08-27 Mihai Bazonupdate (c) years
2012-08-27 Mihai Bazonminor
2012-08-27 Mihai Bazonfix compressing `a,b; return c;` into `return a,b,c;`
2012-08-27 Mihai Bazonadded print_to_string helper method
2012-08-23 Mihai Bazonfix current_col and force a newline every 32K (support...
2012-08-22 Mihai Bazonadded license
2012-08-22 Mihai Bazonwrote more of the compressor and added some tests
2012-08-22 Mihai Bazonfix output for certain edge cases
2012-08-21 Mihai Bazondeclare some properties in the node constructor so...
2012-08-21 Mihai Bazonhint that brackets may be required in AST_BlockStatement
2012-08-21 Mihai Bazoncleaned up some mess and started the actual compressor
2012-08-21 Mihai Bazonsome reorganization
2012-08-21 Mihai Bazonhandle labels properly
2012-08-21 Mihai Bazonwarn about unreferenced symbols
2012-08-21 Mihai Bazonmore fixes:
2012-08-20 Mihai Bazonadded mangler and other stuff
2012-08-19 Mihai Bazondoc (WIP)
2012-08-19 Mihai Bazonsimple visitor API and code to figure out scope and...
2012-08-18 Mihai Bazonsome fixes (need testing) in AST_If codegen
2012-08-17 Mihai Bazonminor whitespace issues
2012-08-17 Mihai Bazonbig speed improvement (observable when beautify = false)
2012-08-17 Mihai Bazondon't output both space and semicolon when beautify...
2012-08-17 Mihai Bazonadded some comments about the rules governing parens
2012-08-17 Mihai Bazonfix one more glitch
2012-08-17 Mihai Bazoncode generator finally seems to work properly
2012-08-16 Mihai Bazonlots'o'fixes in the output routines; still a looong...
2012-08-16 Mihai Bazoncodegen and dropped the useless walker
2012-08-15 Mihai BazonWIP
2012-06-03 Mihai BazonWIP
2012-05-27 Mihai Bazonadded small node test script
2012-05-27 Mihai BazonFixes some gotchas.
2012-05-27 Mihai Bazoninit repo