Home | History | Annotate | Download | only in mjsunit

Lines Matching full:frame

71       // Frame 0 has normal variables a and b.
72 var frame0 = exec_state.frame(0);
76 // Frame 1 has normal variable a (and the .arguments variable).
77 var frame1 = exec_state.frame(1);
81 // Frame 2 has normal variables a and b (and both the .arguments and
83 var frame2 = exec_state.frame(2);
90 assertEquals(1, exec_state.frame(0).evaluate('a').value());
91 assertEquals(2, exec_state.frame(0).evaluate('b').value());
92 assertEquals(3, exec_state.frame(1).evaluate('a').value());
93 assertEquals(4, exec_state.frame(1).evaluate('b').value());
94 assertEquals(5, exec_state.frame(2).evaluate('a').value());
95 assertEquals(6, exec_state.frame(2).evaluate('b').value());