start of new file
[IRC.git] / Robust / src / IR / Tree / TreeNode.java
1 package IR.Tree;
2
3 public class TreeNode {
4     public static final int INDENT=2;
5
6     public String printNode(int indent) {
7         return null;
8     }
9     public static String printSpace(int x) {
10         String sp="";
11         for(int i=0;i<x;i++)
12             sp+=" ";
13         return sp;
14     }
15     public int kind() {
16         throw new Error();
17     }
18 }