Generalize definition of SumExpr a little...Lets sum all elements of
[repair.git] / Repair / RepairCompiler / MCC / IR / MissingTypeDescriptor.java
1 package MCC.IR;
2
3 /**
4  * MissingTypeDescriptor
5  *
6  * a placeholder for type descriptors that haven't been found yet
7  */
8
9 public class MissingTypeDescriptor extends TypeDescriptor {
10
11     public MissingTypeDescriptor(String name) {
12         super(name);
13     }
14
15     public Expr getSizeExpr() {
16         throw new IRException("invalid");
17     }
18     
19 }