This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] /
1 package IR.Tree;
2
3 public class BlockStatementNode extends TreeNode {
4     public BlockStatementNode() {
5     }
6     
7     public String printNode(int indent) {
8         return null;
9     }
10
11 }