aboutsummaryrefslogtreecommitdiff
path: root/lib/output.js
AgeCommit message (Expand)Author
2013-06-03Escape null characters as \x00...Ville Lautanala
2013-05-22Add `negate_iife` option to the code generator....Mihai Bazon
2013-05-20Fix output of statement: `new function(){...};`...Mihai Bazon
2013-05-09Use the negation hack rather than parens for a toplevel function expression call...Mihai Bazon
2013-03-31Quote objects with numeric keysVladimir Zhuravlev
2013-03-31Don't use \xYY for identifiers...Mihai Bazon
2013-03-31Output, to_ascii: Escape non-ascii chars with \xnn instead of \unnnn whenever...Andreas Lind Petersen
2013-02-06Force space after literal regexp when used in "instanceof" or "in"...Mihai Bazon
2013-02-06Fix parens for NaN...Mihai Bazon
2013-02-06Fix parens for negative numbers...Mihai Bazon
2013-02-06Fix parens for AST_New...Mihai Bazon
2013-02-05Ugly hack to print comments before return/throw statements...Mihai Bazon
2013-01-17[AST_Hole] the print function can be a no-op.Mihai Bazon
2013-01-17Fix output for arrays containing undefined values....David Glasser
2012-12-21Fix output when semicolons is off....Mihai Bazon
2012-12-12Small cleanupMihai Bazon
2012-12-06Add proper parens in "NoIn" expressions....Mihai Bazon
2012-11-14Add support for somewhat preserving line numbers....Richard van Velzen
2012-11-07fix another small regression...Mihai Bazon
2012-11-07fix regression from 5346fb94 (shouldn't parenthesize i++ in x[i++])Mihai Bazon
2012-11-07parenthesize property access when it's the expression in New...Mihai Bazon
2012-11-07further fix for parens around New (refs #35)Mihai Bazon
2012-11-07parenthesize a Call expression when its parent is New...Mihai Bazon
2012-11-07add proper parens around unary expressions...Mihai Bazon
2012-11-05print final semicolon...Mihai Bazon
2012-10-22more sequence optimizations (lift some sequences above binary/unary expressio...Mihai Bazon
2012-10-17add `semicolons` option in the code generator (default: `true`)...Mihai Bazon
2012-10-16fix small glitches in source map generationMihai Bazon
2012-10-13add parens to AST_Seq whose parent is AST_UnaryMihai Bazon
2012-10-09add AST_Infinity nodeMihai Bazon
2012-10-09added $propdoc to AST nodes and some cleanups...Mihai Bazon
2012-10-08for certain nodes that we invent we might not have a original source file to...Mihai Bazon
2012-10-04minorMihai Bazon
2012-10-03more cleanup (dropped AST_SwitchBlock)Mihai Bazon
2012-10-02support for `--comments` option to keep comments containing @license or @pres...Mihai Bazon
2012-10-02line numbers start at 1Mihai Bazon
2012-10-02added option to keep some comments in the outputMihai Bazon
2012-10-02"use strict";Mihai Bazon
2012-10-02a shy attempt to obey `width` in the beautifier; added `bracketize` option to...Mihai Bazon
2012-09-24Support input source map...Mihai Bazon
2012-09-21better support for multiple input files:...Mihai Bazon
2012-09-18support for directivesMihai Bazon
2012-09-18added AST_NaN (output as 0/0)Mihai Bazon
2012-09-16rewrite handle_if_return...Mihai Bazon
2012-09-14adding an imaginary "return undefined" can sometimes help...Mihai Bazon
2012-09-14more optimizations that v1 does and some cleanups...Mihai Bazon
2012-09-12fixed run-tests and an issue about reversing the condition in AST_IfMihai Bazon
2012-09-11fixed some mess with symbols/scope...Mihai Bazon
2012-09-10more progress on the compressor (WIP)Mihai Bazon
2012-09-08fix output for division followed by regexp...Mihai Bazon