diff options
Diffstat (limited to 'src/c.cpp')
-rw-r--r-- | src/c.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
@@ -58,8 +58,6 @@ struct CEngine : public Engine { CVal compileString(CEnv& cenv, const char* str); CType compileType(CEnv& cenv, const char* name, const AST* exp); - CType objectType(CEnv& cenv); - void writeModule(CEnv& cenv, std::ostream& os); const string call(CEnv& cenv, CFunc f, const AST* retT); @@ -175,12 +173,6 @@ CEngine::compileType(CEnv& cenv, const char* name, const AST* expr) return NULL; } -CType -CEngine::objectType(CEnv& cenv) -{ - return new string("Object"); -} - CFunc CEngine::startFn(CEnv& cenv, const std::string& name, const ATuple* args, const ATuple* type) { |