changes.
[IRC.git] / Robust / src / Analysis / SSJava / MethodLocationInfo.java
index 61140b49c8ddca3b34686b7db8310aefa0adbcde..7435c187cd6c19d1433c9528b02daafc45513c8b 100644 (file)
@@ -13,6 +13,16 @@ public class MethodLocationInfo extends LocationInfo {
   String returnLocName;
   String thisLocName;
   CompositeLocation pcLoc;
+  CompositeLocation returnLoc;
+
+  public CompositeLocation getReturnLoc() {
+    return returnLoc;
+  }
+
+  public void setReturnLoc(CompositeLocation returnLoc) {
+    this.returnLoc = returnLoc;
+  }
+
   String globalLocName;
 
   Map<Integer, CompositeLocation> mapParamIdxToInferLoc;