#include "astleaf.h" AstLeaf::AstLeaf( AstNode::Type eType ) : AstNode( eType ) { } AstLeaf::~AstLeaf() { } Bu::Formatter &operator<<( Bu::Formatter &f, const AstLeaf &l ) { return f << l.getType(); }