| OLD | NEW |
| (Empty) |
| 1 This tests verifies the identity of function.arguments vs 'arguments' used local
ly. | |
| 2 | |
| 3 PASS: getArguments() == arguments should be false and is. | |
| 4 PASS: getArguments() == eval('arguments') should be false and is. | |
| 5 PASS: getArguments() == arguments {eval present} should be false and is. | |
| 6 PASS: getArguments() == arguments {function present} should be false and is. | |
| 7 PASS: getArguments() == arguments {closure present} should be false and is. | |
| 8 PASS: getArguments() == arguments {with present} should be false and is. | |
| 9 PASS: getArguments() == arguments {catch present} should be false and is. | |
| 10 PASS: getArguments() == arguments {var declaration} should be false and is. | |
| 11 PASS: getArguments() == arguments {function declaration} should be false and is. | |
| 12 | |
| OLD | NEW |