Home | History | Annotate | Download | only in mjsunit

Lines Matching refs:function

45 function listener(event, exec_state, event_data, data) {
62 function BeginTest(name) {
72 function EndTest() {
80 function CheckScopeChain(scopes, exec_state) {
123 // that there is a function.
124 function CheckScopeContent(content, number, exec_state) {
130 if (typeof(content[p]) === 'function') {
191 function local_1() {
195 listener_delegate = function(exec_state) {
207 function local_2(a) {
211 listener_delegate = function(exec_state) {
223 function local_3(a) {
228 listener_delegate = function(exec_state) {
240 function local_4(a, b) {
246 listener_delegate = function(exec_state) {
258 function local_5() {
263 listener_delegate = function(exec_state) {
275 function local_6() {
280 listener_delegate = function(exec_state) {
293 function local_7(a, b) {
301 listener_delegate = function(exec_state) {
313 function with_1() {
319 listener_delegate = function(exec_state) {
332 function with_2() {
340 listener_delegate = function(exec_state) {
355 function with_3() {
361 listener_delegate = function(exec_state) {
374 function with_4() {
382 listener_delegate = function(exec_state) {
398 function with_5() {
406 listener_delegate = function(exec_state) {
422 listener_delegate = function(exec_state) {
441 // With block in function that is marked for optimization while being executed.
444 function with_7() {
451 listener_delegate = function(exec_state) {
461 // Simple closure formed by returning an inner function referering the outer
465 function closure_1(a) {
466 function f() {
473 listener_delegate = function(exec_state) {
483 // Simple closure formed by returning an inner function referering the outer
488 function closure_2(a, b) {
491 function f() {
498 listener_delegate = function(exec_state) {
508 // Simple closure formed by returning an inner function referering the outer
509 // functions arguments. Using all arguments and locals from the outer function
510 // in the inner function makes these part of the debugger information on the
514 function closure_3(a, b) {
517 function f() {
524 listener_delegate = function(exec_state) {
535 // Simple closure formed by returning an inner function referering the outer
536 // functions arguments. Using all arguments and locals from the outer function
537 // in the inner function makes these part of the debugger information on the
538 // closure. Use the inner function as well...
541 function closure_4(a, b) {
544 function f() {
553 listener_delegate = function(exec_state) {
557 CheckScopeContent({a:1,b:2,x:3,y:4,f:function(){}}, 1, exec_state);
564 // Simple closure formed by returning an inner function referering the outer
566 // (including the inner function itself) from the outer function becomes part of
570 function closure_5(a, b) {
573 function f() {
581 listener_delegate = function(exec_state) {
585 CheckScopeContent({a:1,b:2,x:3,y:4,f:function(){}}, 1, exec_state);
594 function closure_6(a, b) {
595 function f(a, b) {
598 return function() {
609 listener_delegate = function(exec_state) {
615 CheckScopeContent({f:function(){}}, 2, exec_state);
624 function closure_7(a, b) {
629 function f(a, b) {
634 return function() {
643 listener_delegate = function(exec_state) {
650 CheckScopeContent({a:1,b:2,x:3,y:4,i:5,j:6,f:function(){}}, 2, exec_state);
658 function closure_8() {
659 (function inner(x) {
664 listener_delegate = function(exec_state) {
674 function closure_9() {
677 (function inner(x) {
684 listener_delegate = function(exec_state) {
695 function the_full_monty(a, b) {
700 function f(a, b) {
706 return function() {
721 listener_delegate = function(exec_state) {
734 CheckScopeContent({a:1,b:2,x:3,y:4,i:5,j:6,f:function(){}}, 5, exec_state);
741 function closure_in_with_1() {
743 (function inner(x) {
749 listener_delegate = function(exec_state) {
761 function closure_in_with_2() {
763 (function inner(x) {
771 listener_delegate = function(exec_state) {
786 function createClosure(a) {
788 return function closure() {
790 (function inner(x) {
798 function closure_in_with_3() {
803 listener_delegate = function(exec_state) {
815 listener_delegate = function(exec_state) {
824 (function(x) {
833 listener_delegate = function(exec_state) {
841 function catch_block_1() {
850 listener_delegate = function(exec_state) {
861 function catch_block_2() {
872 listener_delegate = function(exec_state) {
885 function catch_block_3() {
897 listener_delegate = function(exec_state) {
909 function catch_block_4() {
922 listener_delegate = function(exec_state) {
937 listener_delegate = function(exec_state) {
954 listener_delegate = function(exec_state) {
965 (function(x) {
972 // Catch block in function that is marked for optimization while being executed.
974 function catch_block_7() {
984 listener_delegate = function(exec_state) {