checkpoint
[sbp.git] / src / edu / berkeley / sbp / Walk.java
index 092d1ff..5e1f534 100644 (file)
@@ -109,7 +109,8 @@ abstract class Walk<T> {
         private final HashSet<SequenceOrElement> all;
         private boolean eof = false;
         public boolean includesEof() { return eof; }
-        public Follow(Topology<Tok> cs, SequenceOrElement me, HashSet<SequenceOrElement> all, Cache c)  { super(cs, c); this.me = me; this.all = all; }
+        public Follow(Topology<Tok> cs, SequenceOrElement me, HashSet<SequenceOrElement> all, Cache c)  {
+          super(cs, c); this.me = me; this.all = all; }
         public Topology<Tok> bottom(SequenceOrElement e)                       { return cs; }
         public Topology<Tok> sequence(Sequence seq)                  { return cs; }
         public Topology<Tok> walkAtom(Atom r) { return walk((SequenceOrElement)r); }