Virtual function calls.

This commit is contained in:
chriseth
2019-04-11 15:45:43 +02:00
committed by Mathias Baumann
parent 18ab8aeb85
commit 565d9837e4
8 changed files with 243 additions and 12 deletions
@@ -47,7 +47,9 @@ public:
bool visit(VariableDeclarationStatement const& _variableDeclaration) override;
bool visit(Assignment const& _assignment) override;
void endVisit(BinaryOperation const& _binOp) override;
bool visit(FunctionCall const& _funCall) override;
bool visit(Identifier const& _identifier) override;
bool visit(Literal const& _literal) override;
private:
std::ostringstream m_code;