checkpoint
[sbp.git] / src / edu / berkeley / sbp / meta / MetaGrammar.java
index 2340de2..91fd42f 100644 (file)
@@ -166,7 +166,7 @@ public class MetaGrammar {
         }
         public String toString() { return "reducer-"+_bindable.toString(); }
         public Object invoke(Iterable<Tree<Object>> t) {
         }
         public String toString() { return "reducer-"+_bindable.toString(); }
         public Object invoke(Iterable<Tree<Object>> t) {
-            if (_israw) return _bindable.impose(new Object[] { t });
+            if (_israw) return _bindable.createBinding().invoke(new Object[] { t });
             ArrayList ret = new ArrayList();
             for(Tree tc : t) {
                 if (tc.head() != null && tc.head() instanceof Functor)
             ArrayList ret = new ArrayList();
             for(Tree tc : t) {
                 if (tc.head() != null && tc.head() instanceof Functor)