aboutsummaryrefslogtreecommitdiffstats
path: root/tuplr.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tuplr.hpp')
-rw-r--r--tuplr.hpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/tuplr.hpp b/tuplr.hpp
index 268d0b1..acf1cec 100644
--- a/tuplr.hpp
+++ b/tuplr.hpp
@@ -131,7 +131,6 @@ SExp readExpression(Cursor& cur, std::istream& in);
typedef void* CValue; ///< Compiled value (opaque)
typedef void* CFunction; ///< Compiled function (opaque)
-typedef void* CEngine; ///< Compiler engine (opaque)
/***************************************************************************
@@ -562,8 +561,8 @@ struct Engine {
const vector<string> argNames=vector<string>()) = 0;
virtual void finishFunction(CEnv& cenv, CFunction f, CValue ret) = 0;
- virtual void eraseFunction(CEnv& cenv, CFunction f) = 0;
- virtual void writeModule(CEnv& cenv, std::ostream& os) = 0;
+ virtual void eraseFunction(CEnv& cenv, CFunction f) = 0;
+ virtual void writeModule(CEnv& cenv, std::ostream& os) = 0;
virtual const string call(CEnv& cenv, CFunction f, AType* retT) = 0;
};
@@ -625,8 +624,6 @@ private:
void pprint(std::ostream& out, const AST* ast);
void initLang(PEnv& penv, TEnv& tenv);
-CEnv* newCenv(PEnv& penv, TEnv& tenv);
-void freeCenv(CEnv* cenv);
int eval(CEnv& cenv, const string& name, istream& is);
int repl(CEnv& cenv);