diff options
Diffstat (limited to 'Sencha-lang/AST/BasicStatement.cpp')
-rw-r--r-- | Sencha-lang/AST/BasicStatement.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Sencha-lang/AST/BasicStatement.cpp b/Sencha-lang/AST/BasicStatement.cpp index bcdd5a7..16848fe 100644 --- a/Sencha-lang/AST/BasicStatement.cpp +++ b/Sencha-lang/AST/BasicStatement.cpp @@ -25,10 +25,6 @@ void BasicStatement::add_expression(ASTExpression * expr) children.push_back(expr); } -std::string BasicStatement::debug() -{ - return "Basic statement with expression:\n" + children[0]->debug() + "\n;\n"; -} void BasicStatement::execute() { |