diff options
Diffstat (limited to 'src/c.cpp')
-rw-r--r-- | src/c.cpp | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -160,7 +160,7 @@ struct CEngine : public Engine { CVal compileString(CEnv& cenv, const char* str); CVal compilePrimitive(CEnv& cenv, const ATuple* prim); CVal compileIf(CEnv& cenv, const ATuple* aif); - CVal compileMatch(CEnv& cenv, const ATuple* match); + CVal compileIsA(CEnv& cenv, CVal rtti, const ASymbol* tag) { return NULL; } CVal compileGlobal(CEnv& cenv, const AType* type, const string& sym, CVal val); CVal compileGlobalGet(CEnv& cenv, const string& sym, CVal val); @@ -266,12 +266,6 @@ CEngine::compileIf(CEnv& cenv, const ATuple* aif) } CVal -CEngine::compileMatch(CEnv& cenv, const ATuple* match) -{ - return NULL; -} - -CVal CEngine::compilePrimitive(CEnv& cenv, const ATuple* prim) { ATuple::const_iterator i = prim->begin(); |