js/src/tests/test262/ch12/12.13/S12.13_A2_T6.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 * "throw Expression" returns (throw, GetValue(Result(1)), empty), where 1 evaluates Expression
michael@0 6 *
michael@0 7 * @path ch12/12.13/S12.13_A2_T6.js
michael@0 8 * @description Throwing object
michael@0 9 */
michael@0 10
michael@0 11 var myObj = {p1: 'a',
michael@0 12 p2: 'b',
michael@0 13 p3: 'c',
michael@0 14 value: 'myObj_value',
michael@0 15 valueOf : function(){return 'obj_valueOf';},
michael@0 16 parseInt : function(){return 'obj_parseInt';},
michael@0 17 NaN : 'obj_NaN',
michael@0 18 Infinity : 'obj_Infinity',
michael@0 19 eval : function(){return 'obj_eval';},
michael@0 20 parseFloat : function(){return 'obj_parseFloat';},
michael@0 21 isNaN : function(){return 'obj_isNaN';},
michael@0 22 isFinite : function(){return 'obj_isFinite';},
michael@0 23 i:7
michael@0 24 }
michael@0 25
michael@0 26 try{
michael@0 27 throw myObj;
michael@0 28 }
michael@0 29 catch(e){
michael@0 30 // CHECK#1
michael@0 31 if (e.p1!=="a") $ERROR('#1: e.p1 === "a". Actual: e.p1 ==='+ e.p1 );
michael@0 32 // CHECK#2
michael@0 33 if (e.value!=='myObj_value') $ERROR('#2: e.p1 === \'myObj_value\'. Actual: e.p1 ==='+ e.p1 );
michael@0 34 // CHECK#3
michael@0 35 if (e.eval()!=='obj_eval') $ERROR('#3: e.p1 === \'obj_eval\'. Actual: e.p1 ==='+ e.p1 );
michael@0 36 }
michael@0 37
michael@0 38 // CHECK#4
michael@0 39 myObj.i=6
michael@0 40 try{
michael@0 41 throw myObj;
michael@0 42 }
michael@0 43 catch(e){}
michael@0 44 if (myObj.i!==6) $ERROR('#4: Handling of catch must be correct');
michael@0 45

mercurial