UglifyJS/lib
Mihai Bazon 774f2ded94 minor optimization
for `==` or `!=` against a constant, prefer to display the constant first.
should help a bit after gzip, i.e.:

    typeof foo=="undefined"
    ^^^^^^    ^^^^^^^^^^^^^

vs:

    "undefined"==typeof foo
    ^^^^^^^^^^^^^^^^^^^     (longer sequence that could repeat)

idea stolen from closure.
2012-11-05 13:13:06 +02:00
..
ast.js more sequence optimizations (lift some sequences above binary/unary expressions so that we can avoid parens) 2012-10-22 11:58:06 +03:00
compress.js minor optimization 2012-11-05 13:13:06 +02:00
mozilla-ast.js fix end tokens in spidermonkey ast import 2012-10-13 11:37:58 +03:00
output.js print final semicolon 2012-11-05 13:09:39 +02:00
parse.js minor 2012-10-13 12:42:01 +03:00
scope.js use a Dictionary object instead of plain object for hashes 2012-11-02 10:58:45 +02:00
sourcemap.js line numbers start at 1 2012-10-02 16:39:53 +03:00
transform.js minor 2012-10-12 14:55:54 +03:00
utils.js use a Dictionary object instead of plain object for hashes 2012-11-02 10:58:45 +02:00