nashorn/test/script/basic/closure.js.EXPECTED
changeset 24778 2ff5d7041566
parent 16147 e63b63819133
equal deleted inserted replaced
24777:ed1974940ff4 24778:2ff5d7041566
     1 10 20
     1 10 20
     2 10 undefined
     2 10 undefined
     3 10 20
     3 10 20
     4 10,20
     4 10,20
     5 function test4(a, b){ 
     5 function test4(a, b){
     6     print(arguments[0] + "," + arguments[1]); 
     6     print(arguments[0] + "," + arguments[1]);
     7     print(arguments.callee);
     7     print(arguments.callee);
     8 }
     8 }