FIX suppression des /;;.*$/ (définit étant un commentaire) lors de la minification...
authorGreg Burri <greg.burri@gmail.com>
Mon, 6 Oct 2008 20:41:21 +0000 (20:41 +0000)
committerGreg Burri <greg.burri@gmail.com>
Mon, 6 Oct 2008 20:41:21 +0000 (20:41 +0000)
tools/jsmin.js

index a49c2bf..55ee654 100644 (file)
@@ -121,6 +121,16 @@ function jsmin(comment, input, level) {
        function next() {
 
                var c = get();
+      
+      if (c === ";" && peek() === ";") {
+         for (;;) {
+            c = get();
+            if (c <= '\n') {
+               return c;
+            }
+         }
+      }
+    
                if (c == '/') {
                        switch (peek()) {
                        case '/':