]> source.dussan.org Git - gwtquery.git/commitdiff
This was making the "-XenableClosureCompiler" option fail with the error "java.lang...
authorManolo Carrasco <manolo@apache.org>
Sat, 30 Jun 2012 08:23:25 +0000 (08:23 +0000)
committerManolo Carrasco <manolo@apache.org>
Sat, 30 Jun 2012 08:23:25 +0000 (08:23 +0000)
gwtquery-core/src/main/java/com/google/gwt/query/client/impl/SelectorEngineSizzle.java
gwtquery-core/src/main/java/com/google/gwt/query/client/impl/SelectorEngineSizzleIE.java
gwtquery-core/src/main/java/com/google/gwt/query/client/impl/research/SelectorEngineSizzleGwt.java

index c267fef8bba999ca281370e67d5e70b8a1e2ac54..5d3e7c6cfad710738846d6bd55bbeff41d0ab27a 100644 (file)
@@ -391,7 +391,7 @@ var Expr = GQS.selectors = {
         }
       }
     },
-    "": function(checkSet, part, isXML){
+    "-": function(checkSet, part, isXML){
       var doneName = done++, checkFn = dirCheck, nodeCheck;
 
       if ( typeof part === "string" && !/\W/.test(part) ) {
index edf17698106e3bb4caecf0378bb535ddd1cbc951..a5f27a0d2a4fa1dff3d7b91212aa7b0a07a6e689 100644 (file)
@@ -393,7 +393,7 @@ var Expr = IES.selectors = {
         }
       }
     },
-    "": function(checkSet, part, isXML){
+    "-": function(checkSet, part, isXML){
       var doneName = done++, checkFn = dirCheck, nodeCheck;
 
       if ( typeof part === "string" && !/\W/.test(part) ) {
index 7143870534ac2de5a38bdad46420e7041e0832df..6c72f8def14a199c0b4419a875f194c6579f8cb3 100644 (file)
@@ -114,7 +114,7 @@ public class SelectorEngineSizzleGwt extends SelectorEngineImpl {
             }
           }
         },
-        "": function(checkSet, part){
+        "-": function(checkSet, part){
           var doneName = done++;
           if ( typeof part === "string" && !/\W/.test(part) ) {
             checkFn = $wnd.dirNodeCheck;