js/src/tests/test262/ch12/12.14/S12.14_A18_T6.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 * Catching objects with try/catch/finally statement
michael@0 6 *
michael@0 7 * @path ch12/12.14/S12.14_A18_T6.js
michael@0 8 * @description Catching 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.value===\'myObj_value\'. Actual: e.value==='+ e.value );
michael@0 34 // CHECK#3
michael@0 35 if (e.eval()!=='obj_eval') $ERROR('#3: e.eval()===\'obj_eval\'. Actual: e.eval()==='+ e.eval() );
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
michael@0 46 // CHECK#5
michael@0 47 myObj.i=6;
michael@0 48 try{
michael@0 49 throw myObj;
michael@0 50 }
michael@0 51 catch(e){
michael@0 52 e.i=10;
michael@0 53 }
michael@0 54 if (myObj.i!==10) $ERROR('#5: Handling of catch must be correct');
michael@0 55

mercurial