blob: 59a4e34284c55ed9ebff627362b96d23b2ef355f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#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();
}
|