sencha-lang/Sencha-lang/Elements/SenchaFunction.h

33 lines
650 B
C
Raw Normal View History

/*
* SenchaFunction.h
*
* Created on: Dec 30, 2012
* Author: att
*/
#ifndef SENCHAFUNCTION_H_
#define SENCHAFUNCTION_H_
#include <string>
#include <iostream>
#include <vector>
#include <SenchaObject.h>
#include "Element.h"
#include "../Utils/to_string.h"
#include "../Context.h"
#include "../AST/ASTNode.h"
class SenchaFunction : public Element
{
public:
std::string name;
std::vector<std::string> names_of_arguments;
ASTNode * body;
Context * context;
SenchaFunction(std::string name, std::vector<std::string> names_of_arguments, ASTNode * body, Context * context);
virtual ~SenchaFunction();
};
#endif /* SENCHAFUNCTION_H_ */