Home | History | Annotate | Download | only in es6

Lines Matching refs:exec_state

13   function listener(event, exec_state, event_data, data) {
17 handler(exec_state);
56 function CheckFastAllScopes(scopes, exec_state) {
57 var fast_all_scopes = exec_state.frame().allScopes(true);
68 function CheckScopeChain(scopes, exec_state) {
69 var all_scopes = exec_state.frame().allScopes();
70 assertEquals(scopes.length, exec_state.frame().scopeCount());
73 var scope = exec_state.frame().scope(i);
85 CheckFastAllScopes(scopes, exec_state);
88 var dcp = exec_state.debugCommandProcessor("unspecified_running_state");
115 function CheckScopeContent(content, number, exec_state) {
116 var scope = exec_state.frame().scope(number);
150 var dcp = exec_state.debugCommandProcessor("unspecified_running_state");
179 function (exec_state) {
181 debug.ScopeType.Global], exec_state);
182 CheckScopeContent({}, 0, exec_state);
189 function (exec_state) {
191 debug.ScopeType.Global], exec_state);
192 CheckScopeContent({a:1}, 0, exec_state);
199 function (exec_state) {
201 debug.ScopeType.Global], exec_state);
202 CheckScopeContent({a:1,x:3}, 0, exec_state);
209 function (exec_state) {
211 debug.ScopeType.Global], exec_state);
212 CheckScopeContent({a:1,b:2,x:3,y:4}, 0, exec_state);
219 function (exec_state) {
221 debug.ScopeType.Global], exec_state);
222 CheckScopeContent({}, 0, exec_state);
229 function (exec_state) {
231 debug.ScopeType.Global], exec_state);
232 CheckScopeContent({i:5}, 0, exec_state);
243 function (exec_state) {
245 debug.ScopeType.Global], exec_state);
246 CheckScopeContent({a:1,b:2,x:3,y:4,i:5,j:6}, 0, exec_state);
253 function (exec_state) {
257 debug.ScopeType.Global], exec_state);
258 CheckScopeContent({}, 0, exec_state);
259 CheckScopeContent({}, 1, exec_state);
267 function (exec_state) {
270 debug.ScopeType.Global], exec_state);
271 CheckScopeContent({a:1}, 1, exec_state);
301 function (exec_state) {
308 debug.ScopeType.Global], exec_state);
309 CheckScopeContent({b:16}, 0, exec_state);
310 CheckScopeContent({a:15}, 1, exec_state);
311 CheckScopeContent({x:14}, 2, exec_state);
312 CheckScopeContent({j:13}, 3, exec_state);
313 CheckScopeContent({a:1,b:2,x:9,y:10,i:11,j:12}, 4, exec_state);
314 CheckScopeContent({a:1,b:2,x:3,y:4,i:5,j:6,f:function(){}}, 5, exec_state);
321 function (exec_state) {
324 debug.ScopeType.Global], exec_state);
325 CheckScopeContent({e:'Exception'}, 0, exec_state);