Is it possible to view the value of a variable from a higher stack level when hitting a breakpoint in eclipse? IE say we have the following functions -
void foo(){
  for(int i=0;i<100;i++){
    bar();
  }
}
void bar(){
  //breakpoint here
}
if I put a breakpoint in bar, can I see the value of i which should be 1 stack level above me without manually clicking on the stack level?
 
     
    