| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- function foo1(a, b) {
- if (b != 10) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- if (eval('b') != 10) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- var b = 1;
- if (b != 1) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- }
- foo1(undefined, 10);
- function foo2(a, b = 10) {
- if (b != 10) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- if (eval('b') != 10) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- var b = 1;
- if (b != 1) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- }
- foo2();
- function foo3(a = 10, b = function () { return a; }) {
- if (b() != 10) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- if (a != 10) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- var a = 1;
- if (b() != 10) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- if (a != 1) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- }
- foo3();
- function foo4(a = 10, b = function () { return a; }) {
- if (b() != 10) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- if (a != 10) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- a = 1;
- if (a != 1) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- if (b() != 1) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- }
- foo4();
- function foo5(a = 10, b = function () { return a; }) {
- if (b() != 10) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- if (eval('b()') != 10) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- var a = 1;
- if (b() != 10) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- if (a != 1) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- }
- foo5();
- function foo6(a = 10, b = function () { return a; }) {
- if (b() != 10) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- if (eval('b()') != 10) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- a = 1;
- if (b() != 1) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- if (eval('a') != 1) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- }
- foo6();
- function foo7(a, b = function () { a; }) {
- if (eval("a") !== 1) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- if (arguments[0] !== 1) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- if (eval("arguments[0]") !== 1) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- arguments = 100;
- if (eval("a") !== 1) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- if (eval("arguments") !== 100) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- if (arguments !== 100) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- }
- foo7(1);
- function foo8(a = 10, b = eval("a")) {
- if (b != 10) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- if (eval('b') != 10) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- if (a != 10) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- var a = 1;
- if (b != 10) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- if (a != 1) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- }
- foo8();
- function foo9(a = 10, b = () => eval("a")) {
- if (b() != 10) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- if (eval('b()') != 10) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- if (a != 10) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- a = 1;
- if (b() != 1) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- if (a != 1) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- }
- foo9();
- function foo10(a, b = () => eval("a")) {
- if (eval("a") !== 1) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- if (arguments[0] !== 1) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- if (eval("arguments[0]") !== 1) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- arguments = 100;
- if (eval("a") !== 1) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- if (eval("arguments") !== 100) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- if (arguments !== 100) {
- print("FAILED")
- } else {
- print("PASSED");
- }
- }
- foo10(1);
|