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