blob: dfbf4283e8155812c759e5ed26c81554230555e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* SenchaFunction.cpp
*
* Created on: Dec 30, 2012
* Author: att
*/
#include "SenchaFunction.h"
SenchaFunction::SenchaFunction(std::string name, std::vector<std::string> names_of_arguments, ASTNode * body, Context * context)
: name(name), names_of_arguments(names_of_arguments), body(body), context(context)
{
}
SenchaFunction::~SenchaFunction() {
}
|