summaryrefslogtreecommitdiff
path: root/src/expr/node_builder.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/expr/node_builder.h')
-rw-r--r--src/expr/node_builder.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/expr/node_builder.h b/src/expr/node_builder.h
index d81190d7a..0cb9ed026 100644
--- a/src/expr/node_builder.h
+++ b/src/expr/node_builder.h
@@ -566,6 +566,24 @@ public:
return append(n);
}
+ /**
+ * If this Node-under-construction has a Kind set, collapse it and
+ * append the given Node as a child. Otherwise, simply append.
+ * FIXME: do we really want that collapse behavior? We had agreed
+ * on it but then never wrote code like that.
+ */
+ NodeBuilder<nchild_thresh>& operator<<(TypeNode n) {
+ Assert(!isUsed(), "NodeBuilder is one-shot only; "
+ "attempt to access it after conversion");
+ /* FIXME: disable this "collapsing" for now..
+ if(EXPECT_FALSE( getKind() != kind::UNDEFINED_KIND )) {
+ Node n2 = operator Node();
+ clear();
+ append(n2);
+ }*/
+ return append(n);
+ }
+
/** Append a sequence of children to this TypeNode-under-construction. */
inline NodeBuilder<nchild_thresh>&
append(const std::vector<TypeNode>& children) {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback