added FunctionNode

git-svn-id: svn://anubis/jtlc/trunk@21 f5bc74b8-7b62-4e90-9214-7121d538519f
This commit is contained in:
josh 2010-01-14 14:17:35 +00:00
parent 3301142147
commit b686d15705
2 changed files with 13 additions and 0 deletions

11
nodes/FunctionNode.cc Normal file
View File

@ -0,0 +1,11 @@
#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];
}

View File

@ -52,6 +52,8 @@ class DoubleNode : public Node
class FunctionNode : public Node
{
public:
void process(FILE * out);
};
class IdentifierNode : public Node