| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- function write(v) { WScript.Echo(v + ""); }
- //
- // function f1_* just access arguments inside eval
- //
- (function f1_0() {
- write(eval('arguments'));
- }) ("something");
- (function f1_1(arguments) {
- write(eval('arguments'));
- }) ("something");
- (function f1_2(arguments) {
- var x = 10;
- write(eval('arguments + " " + x'));
- }) ("something");
- (function f1_3() {
- var arguments = 10;
- write(eval('arguments'));
- }) ("something");
- (function f1_4() {
- function arguments() { }
- write(eval('arguments'));
- }) ("something");
- (function f1_5(arguments, arguments) {
- write(eval('arguments'));
- }) ("something");
- //
- // function f2_* access arguments inside function and then access arguments inside eval
- //
- (function f2_0() {
- write(arguments);
- write(eval('arguments'));
- }) ("something 2");
- (function f2_1(arguments) {
- write(arguments);
- write(eval('arguments'));
- }) ("something 2");
- (function f2_2(arguments) {
- var x = 10;
- write(arguments);
- write(eval('arguments + " " + x'));
- }) ("something 2");
- (function f2_3() {
- var arguments = 10;
- write(arguments);
- write(eval('arguments'));
- }) ("something 2");
- (function f2_4() {
- function arguments() { }
- write(arguments);
- write(eval('arguments'));
- }) ("something 2");
- (function f2_5(arguments, arguments) {
- write(arguments);
- write(eval('arguments'));
- }) ("something 2");
|