View Javadoc

1   package org.kit.furia.fragment.soot.representation.internal;
2   
3   import java.util.List;
4   
5   
6   import org.kit.furia.fragment.soot.representation.*;
7   import soot.Local;
8   import soot.RefType;
9   import soot.Type;
10  import soot.UnitPrinter;
11  import soot.jimple.internal.JimpleLocal;
12  import soot.util.Switch;
13  
14  public class FSelfReference extends JimpleLocal implements  Qable{
15  
16  	/** Constructs a JimpleLocal of the given name and type. */
17      public FSelfReference()
18      {
19      	super("self", RefType.v());
20      }
21  	
22  	public String toQ(){
23  		return  FuriaConstructDefinitions.FURIA_fself +"()";
24  	}
25  
26  }