jtlc/nodes/FunctionNode.cc
josh 7b8436acb4 added Compiler class to pass to Node::process() instead of a FILE *
git-svn-id: svn://anubis/jtlc/trunk@22 f5bc74b8-7b62-4e90-9214-7121d538519f
2010-01-14 20:27:01 +00:00

13 lines
253 B
C++

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