removed illegal use of double-star
[sbp.git] / src / edu / berkeley / sbp / Walk.java
index abbffd7..cfd9c31 100644 (file)
@@ -166,7 +166,12 @@ abstract class Walk<T> {
 
             if (e instanceof Repeat.MaximalSequence || e instanceof Repeat.Maximal)
                 cs.remove(new Last<Tok>(cs.fresh(), c).walk(e));
-
+            /*
+            if (e instanceof Sequence) {
+                Sequence s = (Sequence)e;
+                if (s.noFollow() != null) cs.remove(s.noFollow());
+            }
+            */
             if (c != null && e==me) {
                 c.follow.put(e, cs.dup());
                 c.eof.put(e, eof);