removed illegal use of double-star
[sbp.git] / src / edu / berkeley / sbp / Sequence.java
index fcff530..a5149f2 100644 (file)
@@ -35,6 +35,14 @@ public abstract class Sequence extends Element implements Iterable<Element> {
 
     ////////////////////////////////////////////////////////////////////////////////
 
+    public Topology noFollow() { return null; }
+
+    Topology toAtom() {
+        if (elements.length>1) throw new RuntimeException("cannot invoke toAtom() on a Sequence with " + elements.length + " elements: " + this);
+        if (elements.length==0) return null;
+        return elements[0].toAtom();
+    }
+
     protected final Element[] elements;
 
     final HashSet<Sequence> needs;