-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathast-printer.php
115 lines (93 loc) · 1.87 KB
/
ast-printer.php
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<?php
require_once('ast.php');
class AstPrinter implements VisitorExpr, VisitorStmt
{
public function print(Stmt $stmt)
{
return $stmt->accept($this);
}
public function visitAssignExpr(AssignExpr $expr)
{
return 'assign';
}
public function visitBinaryExpr(BinaryExpr $expr)
{
return $expr->left->accept($this).' '.$expr->operator.' '.$expr->right->accept($this);
}
public function visitCallExpr(CallExpr $expr)
{
return 'call';
}
public function visitGetExpr(GetExpr $expr)
{
return 'get';
}
public function visitGroupingExpr(GroupingExpr $expr)
{
return '('.$expr->expression->accept($this).')';
}
public function visitLiteralExpr(LiteralExpr $expr)
{
return $expr->value;
}
public function visitLogicalExpr(LogicalExpr $expr)
{
return 'logical';
}
public function visitSetExpr(SetExpr $expr)
{
return 'set';
}
public function visitSuperExpr(SuperExpr $expr)
{
return 'super';
}
public function visitThisExpr(ThisExpr $expr)
{
return 'this';
}
public function visitUnaryExpr(UnaryExpr $expr)
{
return $expr->operator.$expr->right->accept($this);
}
public function visitVariableExpr(VariableExpr $expr)
{
return 'var';
}
public function visitBlockStmt(BlockStmt $stmt)
{
return 'block';
}
public function visitClassStmt(ClassStmt $stmt)
{
return 'class';
}
public function visitExpressionStmt(ExpressionStmt $stmt)
{
return $stmt->expression->accept($this);
}
public function visitFunctionStmt(FunctionStmt $stmt)
{
return 'function';
}
public function visitIfStmt(IfStmt $stmt)
{
return 'if';
}
public function visitPrintStmt(PrintStmt $stmt)
{
return 'print';
}
public function visitReturnStmt(ReturnStmt $stmt)
{
return 'return';
}
public function visitVarStmt(VarStmt $stmt)
{
return 'var';
}
public function visitWhileStmt(WhileStmt $stmt)
{
return 'while';
}
}