Пример #1
0
 /** Returns the set of objects pointed to by static field f. */
 public PointsToSet reachingObjects(SootField f) {
   Type t = f.getType();
   if (t instanceof RefType) return FullObjectSet.v((RefType) t);
   return FullObjectSet.v();
 }
Пример #2
0
 /** Returns the set of objects pointed to by elements of the arrays in the PointsToSet s. */
 public PointsToSet reachingObjectsOfArrayElement(PointsToSet s) {
   return FullObjectSet.v();
 }
Пример #3
0
 /** Returns the set of objects pointed to by variable l. */
 public PointsToSet reachingObjects(Local l) {
   Type t = l.getType();
   if (t instanceof RefType) return FullObjectSet.v((RefType) t);
   return FullObjectSet.v();
 }