Lines Matching refs:function
37 // function 'g'.
38 function listener(event, exec_state, event_data, data) {
62 function g(t) {
66 // Test step into function call from a function without local variables.
67 function call1() {
73 // Test step into function call from a function with some local variables.
74 function call2() {
82 // Test step into function call which is a part of an expression.
83 function call3() {
92 // Test step into function call from a function with some local variables.
93 function call4() {
102 // Test step into function apply from a function without local variables.
103 function apply1() {
109 // Test step into function apply from a function with some local variables.
110 function apply2() {
118 // Test step into function apply which is a part of an expression.
119 function apply3() {
128 // Test step into function apply from a function with some local variables.
129 function apply4() {
138 // Test step into bound function.
139 function bind1() {
145 // Test step into apply of bound function.
146 function applyAndBind1() {
166 // Test global bound function.