grammar refactoring: part of build_visitor fixed

This commit is contained in:
ProgramSnail 2023-04-10 01:48:07 +03:00
parent 64653e6a6a
commit 3c2d496a85
3 changed files with 75 additions and 49 deletions

View file

@ -77,7 +77,7 @@ private:
void Visit(UnaryOperatorExpression* node) override;
void Visit(ReferenceExpression* node) override;
// Simple Expressions
// Other expressions
void Visit(FunctionCallExpression* node) override;

View file

@ -135,7 +135,7 @@ struct BinaryOperatorExpression;
struct UnaryOperatorExpression;
struct ReferenceExpression;
// Other Expressions
// Other expressions
struct FunctionCallExpression;