jdk-24/nashorn/test/script/basic/closure.js.EXPECTED
Attila Szegedi 5ec014a881 8044638: Tidy up Nashorn codebase for code standards
Reviewed-by: lagergren, sundar
2014-06-04 13:08:57 +02:00

9 lines
130 B
Plaintext

10 20
10 undefined
10 20
10,20
function test4(a, b){
print(arguments[0] + "," + arguments[1]);
print(arguments.callee);
}