diff options
Diffstat (limited to 'Sencha-lang/AST/ConstantExpression.cpp')
-rw-r--r-- | Sencha-lang/AST/ConstantExpression.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Sencha-lang/AST/ConstantExpression.cpp b/Sencha-lang/AST/ConstantExpression.cpp index ec8cbd5..4f80a4a 100644 --- a/Sencha-lang/AST/ConstantExpression.cpp +++ b/Sencha-lang/AST/ConstantExpression.cpp @@ -62,5 +62,3 @@ ConstantExpression::ConstantExpression(ASTNode * parent, std::string text) this->type = "ConstantExpression"; this->parent = parent; value = SenchaObject(text); } - -std::string ConstantExpression::debug() { return "Constant expression:\n" + value.repr() + "\n"; } |