[Soot-list] A question regarding soot.Scene.java

Peng Gao gaop at cse.unsw.edu.au
Tue Sep 5 00:45:21 EDT 2006


Hi,

I am reading the soot source code, got a question here regarding  
soot.Scene.java.

in the method 'public void loadNecessaryClasses()', first line:
Iterator it = Options.v().classes().iterator();

But I can't find any method in soot.options.Options.java named  
'classes', however,
there is an instance object 'classes' with type 'Chain' that has a  
method named 'iterator'.

So, should the above line be:
Iterator it = Options.v().classes.iterator();

Thanks in advance for reply.

Cheers

Peng


More information about the Soot-list mailing list