blob: 184f84c61277008d724a83792f9257f402a69def (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/*
* 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 "../AST/ASTNode.h"
class SenchaFunction : public Element
{
public:
std::string name;
std::vector<std::string> names_of_arguments;
ASTNode * body;
SenchaFunction(std::string name, std::vector<std::string> names_of_arguments, ASTNode * body);
SenchaObject operator()();
virtual ~SenchaFunction();
};
#endif /* SENCHAFUNCTION_H_ */
|