blob: 6b07f491683e0a956727432c3f9eb262f0f08b2b (
plain)
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
|
package ast.nodes;
import java.util.ArrayList;
import ast.types.*;
/**
* Node for `block` statement of the grammar.
* It extends the `RootNode`.
*/
public class BlockNode extends RootNode {
public BlockNode(ArrayList<Node> stmts, ArrayList<Node> compoundStmts) {
super(stmts, compoundStmts);
}
@Override
public Type typeCheck() {
return new VoidType();
}
@Override
public String toPrint(String prefix) {
String str = prefix + "Block\n";
prefix += " ";
for (Node stmt : stmts) {
str += stmt.toPrint(prefix);
}
for (Node stmt : compoundStmts) {
str += stmt.toPrint(prefix);
}
return str;
}
}
|