aboutsummaryrefslogtreecommitdiff
path: root/tools/exports.js
AgeCommit message (Collapse)Author
2016-06-20Don't assume DEBUG is defined when exporting --selfRichard van Velzen
Potential fix for #1148
2016-06-19Don't mix strings with directives in outputAnthony Van de Gejuchte
* Don't interpret strings with escaped content as directive * Don't interpret strings after empty statement as directive * Adapt output to prevent strings being represent as directive * Introduce UGLIFY_DEBUG to allow internal testing like EXPECT_DIRECTIVE
2016-06-07Export tokenizer functionChALkeR
In uglify-js@1, both parser and tokenizer methods were exported This allows to use tokenizer() separately, e.g. to wrap or override it, as parse() method accepts not only text, but also tokenized functions.
2016-01-31Fixes #951 missing export for SymbolDefBoris Letocha
2015-09-24Fix mozilla-ast after module loading changesMihai Bazon
Need to explicitly qualify stuff now, since it's not evaluated in some global scope. Ref #636
2015-09-24No longer use `vm` to load code.Mihai Bazon
Improves performance 2x on node > 0.10. Ref #636