diff options
Diffstat (limited to 'Sencha-lang/Elements/SenchaFunction.h')
-rw-r--r-- | Sencha-lang/Elements/SenchaFunction.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Sencha-lang/Elements/SenchaFunction.h b/Sencha-lang/Elements/SenchaFunction.h index 7185ebb..53eb584 100644 --- a/Sencha-lang/Elements/SenchaFunction.h +++ b/Sencha-lang/Elements/SenchaFunction.h @@ -10,10 +10,10 @@ #include <string> #include <iostream> #include <vector> -#include <SenchaObject.h> +#include "SenchaObject.h" #include "Element.h" #include "../Utils/to_string.h" -#include "../Context.h" +#include "../ContextManager.h" #include "../AST/ASTNode.h" @@ -23,9 +23,9 @@ public: std::string name; std::vector<std::string> names_of_arguments; ASTNode * body; - Context * context; + ContextManager * context; - SenchaFunction(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, ContextManager * context); virtual ~SenchaFunction(); }; |