Home | History | Annotate | Download | only in compiler

Lines Matching refs:function

49 // Test compound assignments in an anonymous function with local variables.
50 (function () {
71 // Test compound assignments in an anonymous function with global variables.
72 (function () {
93 // Test compound assignments in a named function with local variables.
94 function foo() {
117 // Test compound assignments in a named function with global variables.
118 function bar() {
166 // Test compound assignments in an anonymous function with local variables.
167 (function () {
190 // Test compound assignments in an anonymous function with global variables.
191 (function () {
214 // Test compound assignments in a named function with local variables.
215 function foo_loop() {
240 // Test compound assignments in a named function with global variables.
241 function bar_loop() {
268 function test_assign(x, y) { if (x = y) return x; }
275 function store_i_in_element_i_of_object_i() {