js/src/tests/test262/ch13/13.2/S13.2.2_A17_T3.js

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

michael@0 1 // Copyright 2009 the Sputnik authors. All rights reserved.
michael@0 2 // This code is governed by the BSD license found in the LICENSE file.
michael@0 3
michael@0 4 /**
michael@0 5 * FunctionExpression containing "with" statement is admitted
michael@0 6 *
michael@0 7 * @path ch13/13.2/S13.2.2_A17_T3.js
michael@0 8 * @description In the check 4 we populate field getRight in __obj object since var getRight declaration adds variable to function scope
michael@0 9 * but getRight in statement resolves within with(__obj) scope and searchs getRight in __obj first
michael@0 10 */
michael@0 11
michael@0 12 p1="alert";
michael@0 13
michael@0 14 this.__obj={p1:1,getRight:function(){return "right";}};
michael@0 15
michael@0 16 var getRight=function(){return "napravo";};
michael@0 17
michael@0 18 resukt=(function(){
michael@0 19 with(__obj){
michael@0 20 p1="w1";
michael@0 21 var getRight=function(){return false;};
michael@0 22 return p1;
michael@0 23 }
michael@0 24 })();
michael@0 25
michael@0 26 //////////////////////////////////////////////////////////////////////////////
michael@0 27 //CHECK#1
michael@0 28 if (p1!=="alert") {
michael@0 29 $ERROR('#1: p1 === "alert". Actual: p1==='+p1);
michael@0 30 }
michael@0 31 //
michael@0 32 //////////////////////////////////////////////////////////////////////////////
michael@0 33
michael@0 34 //////////////////////////////////////////////////////////////////////////////
michael@0 35 //CHECK#2
michael@0 36 if (getRight()!=="napravo") {
michael@0 37 $ERROR('#2: getRight() === "napravo". Actual: getRight()==='+getRight());
michael@0 38 }
michael@0 39 //
michael@0 40 //////////////////////////////////////////////////////////////////////////////
michael@0 41
michael@0 42 //////////////////////////////////////////////////////////////////////////////
michael@0 43 //CHECK#3
michael@0 44 if (__obj.p1!=="w1") {
michael@0 45 $ERROR('#3: __obj.p1 === "w1". Actual: __obj.p1 ==='+__obj.p1);
michael@0 46 }
michael@0 47 //
michael@0 48 //////////////////////////////////////////////////////////////////////////////
michael@0 49
michael@0 50 //////////////////////////////////////////////////////////////////////////////
michael@0 51 //CHECK#4
michael@0 52 if (__obj.getRight()!==false) {
michael@0 53 $ERROR('#4: __obj.getRight() === false. Actual: __obj.getRight()==='+__obj.getRight());
michael@0 54 }
michael@0 55 //
michael@0 56 //////////////////////////////////////////////////////////////////////////////
michael@0 57
michael@0 58 //////////////////////////////////////////////////////////////////////////////
michael@0 59 //CHECK#5
michael@0 60 if (resukt !== "w1") {
michael@0 61 $ERROR('#5: resukt === "w1". Actual: resukt ==='+resukt);
michael@0 62 }
michael@0 63 //
michael@0 64 //////////////////////////////////////////////////////////////////////////////
michael@0 65
michael@0 66 var resukt;
michael@0 67
michael@0 68

mercurial