jtlc/nodes/FunctionNode.cc
josh b686d15705 added FunctionNode
git-svn-id: svn://anubis/jtlc/trunk@21 f5bc74b8-7b62-4e90-9214-7121d538519f
2010-01-14 14:17:35 +00:00

12 lines
211 B
C++

#include <iostream>
#include "Node.h"
#include "parser/parser.h"
using namespace std;
void FunctionNode::process(FILE * out)
{
refptr<Node> params = m_children[2];
refptr<Node> type = m_children[1];
}