[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

difficulty in soot.jimple.StringConstant



Hi,
 
I'm doing load java class in using soot.
 
there is a String constance that is "I'm" in java source
(String str = "I'm";)
 
It is convert to soot.jimple.StringConstant "I\'m"
(r4 = "I\'m";)
 
I also try to "I\'m" in java source
(String str = "I\'m";)
 
It is convert to soot.jimple.StringConstant "I\'m"
(r4 = "I\'m";)
 
These two are differnent in source, but here is the same in jimple.
 
How is it distinguish?
DongHyun Kim