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

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

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_T2.js
michael@0 8 * @description Throwing an exception within "with" statement
michael@0 9 */
michael@0 10
michael@0 11 this.p1="alert";
michael@0 12
michael@0 13 __obj={p1:1,getRight:function(){return "right";}};
michael@0 14
michael@0 15 getRight=function(){return "napravo";};
michael@0 16
michael@0 17 try {
michael@0 18 (function(){
michael@0 19 with(__obj){
michael@0 20 p1="w1";
michael@0 21 getRight=function(){return false;}
michael@0 22 throw p1;
michael@0 23 }
michael@0 24 })();
michael@0 25 } catch (e) {
michael@0 26 resukt = p1;
michael@0 27 }
michael@0 28
michael@0 29
michael@0 30 //////////////////////////////////////////////////////////////////////////////
michael@0 31 //CHECK#1
michael@0 32 if (p1!=="alert") {
michael@0 33 $ERROR('#1: p1 === "alert". Actual: p1==='+p1);
michael@0 34 }
michael@0 35 //
michael@0 36 //////////////////////////////////////////////////////////////////////////////
michael@0 37
michael@0 38 //////////////////////////////////////////////////////////////////////////////
michael@0 39 //CHECK#2
michael@0 40 if (getRight()!=="napravo") {
michael@0 41 $ERROR('#2: getRight() === "napravo". Actual: getRight() === '+getRight());
michael@0 42 }
michael@0 43 //
michael@0 44 //////////////////////////////////////////////////////////////////////////////
michael@0 45
michael@0 46 //////////////////////////////////////////////////////////////////////////////
michael@0 47 //CHECK#3
michael@0 48 if (__obj.p1!=="w1") {
michael@0 49 $ERROR('#3: __obj.p1 === "w1". Actual: __obj.p1 ==='+__obj.p1);
michael@0 50 }
michael@0 51 //
michael@0 52 //////////////////////////////////////////////////////////////////////////////
michael@0 53
michael@0 54 //////////////////////////////////////////////////////////////////////////////
michael@0 55 //CHECK#4
michael@0 56 if (__obj.getRight()!==false) {
michael@0 57 $ERROR('#4: __obj.getRight() === false. Actual: __obj.getRight() === '+__obj.getRight());
michael@0 58 }
michael@0 59 //
michael@0 60 //////////////////////////////////////////////////////////////////////////////
michael@0 61
michael@0 62 //////////////////////////////////////////////////////////////////////////////
michael@0 63 //CHECK#5
michael@0 64 if (resukt !== "alert") {
michael@0 65 $ERROR('#5: resukt === "alert". Actual: resukt ==='+resukt);
michael@0 66 }
michael@0 67 //
michael@0 68 //////////////////////////////////////////////////////////////////////////////
michael@0 69
michael@0 70 var resukt;
michael@0 71
michael@0 72

mercurial