| OLD | NEW |
| (Empty) | |
| 1 #!/bin/sh |
| 2 ./second_batch_js_generator.py \ |
| 3 --closure-count=10 \ |
| 4 --function-count=10 \ |
| 5 --inner-function-count=10 \ |
| 6 --function-call-count=1 \ |
| 7 --closure-call-count=1 \ |
| 8 --loop-count=5 \ |
| 9 | yui-compressor --type js > second_batch_js_light.min.js |
| 10 ./second_batch_js_generator.py \ |
| 11 --closure-count=50 \ |
| 12 --function-count=50 \ |
| 13 --inner-function-count=20 \ |
| 14 --function-call-count=5 \ |
| 15 --closure-call-count=5 \ |
| 16 --loop-count=5 \ |
| 17 | yui-compressor --type js > second_batch_js_medium.min.js |
| 18 ./second_batch_js_generator.py \ |
| 19 --closure-count=200 \ |
| 20 --function-count=200 \ |
| 21 --inner-function-count=40 \ |
| 22 --function-call-count=10 \ |
| 23 --closure-call-count=10 \ |
| 24 --loop-count=5 \ |
| 25 | yui-compressor --type js > second_batch_js_heavy.min.js |
| OLD | NEW |