1 19 20 25 26 27 28 29 30 package soot; 31 import soot.*; 32 33 import soot.util.*; 34 import java.util.*; 35 36 40 public class IntType extends PrimType implements IntegerType 41 { 42 public IntType( Singletons.Global g ) {} 43 public static IntType v() { return G.v().soot_IntType(); } 44 45 47 public boolean equals(Object t) 48 { 49 return this == t; 50 } 51 52 public int hashCode() 53 { 54 return 0xB747239F; 55 } 56 57 public String toString() 58 { 59 return "int"; 60 } 61 62 public void apply(Switch sw) 63 { 64 ((TypeSwitch) sw).caseIntType(this); 65 } 66 } 67 | Popular Tags |