Added:
[repair.git] / Repair / RepairCompiler / MCC / IR / LiteralExpr.java
1 package MCC.IR;
2
3 import java.util.*;
4
5 public abstract class LiteralExpr extends Expr {
6
7     public Set getRequiredDescriptors() {
8         return new HashSet();
9     }
10
11     public Set getInversedRelations() {
12         return new HashSet();
13     }
14
15 }