diff options
Diffstat (limited to 'src/lift.cpp')
-rw-r--r-- | src/lift.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lift.cpp b/src/lift.cpp index 2c20aa8..3dd0297 100644 --- a/src/lift.cpp +++ b/src/lift.cpp @@ -49,6 +49,12 @@ ASymbol::lift(CEnv& cenv, Code& code) throw() } AST* +AQuote::lift(CEnv& cenv, Code& code) throw() +{ + return this; +} + +AST* ATuple::lift(CEnv& cenv, Code& code) throw() { ATuple* ret = new ATuple(*this); |