-
Notifications
You must be signed in to change notification settings - Fork 0
/
AstPrinter.hpp
35 lines (30 loc) · 1.09 KB
/
AstPrinter.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Copyright 2020 <Copyright hulin>
#ifndef ASTPRINTER_HPP_
#define ASTPRINTER_HPP_
#include <utility>
#include <string>
#include <vector>
#include <memory>
#include "./Expr.hpp"
using std::string;
using std::shared_ptr;
class AstPrinter:
public Visitor<string>,
public std::enable_shared_from_this<AstPrinter> {
public:
string print(shared_ptr<Expr<string>> expr);
string visitLiteralExpr(const Literal<string>& expr);
string visitAssignExpr(const Assign<string>& expr);
string visitBinaryExpr(const Binary<string>& expr);
string visitGroupingExpr(const Grouping<string>& expr);
string visitUnaryExpr(const Unary<string>& expr);
string visitVariableExpr(const Variable<string>& expr) {}
string visitLogicalExpr(const Logical<string>& expr) {}
string visitCallExpr(const Call<string>& expr) {}
// string visitGetExpr(const Get& expr);
// string visitLogicalExpr(const Logical& expr);
// string visitSetExpr(const Set& expr);
// string visitSuperExpr(const Super& expr);
// string visitThisExpr(const This& expr);
};
#endif // ASTPRINTER_HPP_