From: Jay Freeman (saurik) Date: Tue, 17 Nov 2009 03:10:23 +0000 (+0000) Subject: Removed 'each' from the list of unconditionally reserved words and changed the minifi... X-Git-Tag: v0.9.432~157 X-Git-Url: https://git.saurik.com/cycript.git/commitdiff_plain/2d9d4d7b5fcbb8396355cb22949610d7650a1d43?ds=sidebyside Removed 'each' from the list of unconditionally reserved words and changed the minification showdown output. --- diff --git a/Output.cpp b/Output.cpp index d3cf17c..26dc81f 100644 --- a/Output.cpp +++ b/Output.cpp @@ -655,8 +655,6 @@ static const char *Reserved_[] = { "let", "yield", - "each", - NULL }; diff --git a/makefile b/makefile index 87a397e..7254af3 100644 --- a/makefile +++ b/makefile @@ -140,7 +140,7 @@ package: $(deb) test: $(deb) dpkg -i $(deb) if [[ -e target.cy ]]; then cycript -c target.cy && echo; fi - if [[ -e jquery.js ]]; then /usr/bin/time cycript -c jquery.js >jquery.cyc.js; gzip -9c jquery.cyc.js >jquery.cyc.js.gz; ls -la jquery.{cyc,mam,yui}.js{,.gz}; fi + if [[ -e jquery.js ]]; then /usr/bin/time cycript -c jquery.js >jquery.cyc.js; gzip -9c jquery.cyc.js >jquery.cyc.js.gz; wc -c jquery.{mam,gcc,cyc,bak,yui}.js; wc -c jquery.{gcc,cyc,bak,mam,yui}.js.gz; fi if [[ -e test.cy ]]; then cycript test.cy; fi .PHONY: all clean extra package control