0

To minify scripts I use the online YUI compressor available here. Unfortunately though, from time to time the compressor throws errors that I cannot understand, especially since the script doesn't crash when being run.

e.g.:

[ERROR] 27:39:missing formal parameter    
[ERROR] 27:39:missing } after function body    
[ERROR] 31:13:identifier is a reserved word    
[ERROR] 32:8:syntax error

By the way, the script I was just trying to minify is on http://picselbocs.com/plugins/digitize/digitize.js

4

1 に答える 1

0

上記のスクリプトの場合、スクリプト全体で「char」予約語を広範囲に使用していたため、縮小が機能しなくなったことがわかりました。とにかく、 http://closure-compiler.appspot.com/homeを使用する必要があるjavascriptコードの圧縮のエラーをよりよく理解するために、より詳細な説明が提供されています。

于 2012-07-21T09:44:53.137 に答える