iTrace-Dev / iTrace

Infrastructure supporting implicit eye tracking on software artifacts within the IDE and browser.
http://www.i-trace.org
2 stars 0 forks source link

track method parameters in method calls #84

Closed shbonita closed 6 years ago

jennalwise commented 7 years ago
                    Display.getDefault().asyncExec(new Runnable(){
                        public void run(){
                        for (ISolver solver : activeSolvers) {
                            solver.process(response);
                        }
                        }
                    });

For example, new Runnable() and all the code after it is considered a call by .asyncExec and none of the AOIs inside of it are tracked separately.

jennalwise commented 7 years ago

Need to make sure all variations of anonymous class uses are tracked correctly: https://docs.oracle.com/javase/tutorial/java/javaOO/anonymousclasses.html

shbonita commented 6 years ago

Closed. Will open in new infrastructure.