#include "AstNode.h"
#include <iostream>
Go to the source code of this file.
Functions | |
ostream & | operator<< (ostream &stream, const AstNode &node) |
ostream& operator<< | ( | ostream & | stream, | |
const AstNode & | node | |||
) |
Definition at line 22 of file AstNode.cpp.
References AstNode::type, and AstNode::value.
00022 { 00023 stream << node.type; 00024 if (node.value.length() > 0) 00025 stream << '|' << node.value; 00026 return stream; 00027 }