js/src/tests/test262/ch12/12.13/S12.13_A3_T3.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 * 1. Evaluate Expression
michael@0 6 *
michael@0 7 * @path ch12/12.13/S12.13_A3_T3.js
michael@0 8 * @description Evaluating number expression
michael@0 9 */
michael@0 10
michael@0 11 // CHECK#1
michael@0 12 try{
michael@0 13 throw 10+3;
michael@0 14 }
michael@0 15 catch(e){
michael@0 16 if (e!==13) $ERROR('#1: Exception ===13(operaton +). Actual: Exception ==='+ e);
michael@0 17 }
michael@0 18
michael@0 19 // CHECK#2
michael@0 20 var b=10;
michael@0 21 var a=3;
michael@0 22 try{
michael@0 23 throw a+b;
michael@0 24 }
michael@0 25 catch(e){
michael@0 26 if (e!==13) $ERROR('#2: Exception ===13(operaton +). Actual: Exception ==='+ e);
michael@0 27 }
michael@0 28
michael@0 29 // CHECK#3
michael@0 30 try{
michael@0 31 throw 3.15-1.02;
michael@0 32 }
michael@0 33 catch(e){
michael@0 34 if (e!==2.13) $ERROR('#3: Exception ===2.13(operaton -). Actual: Exception ==='+ e);
michael@0 35 }
michael@0 36
michael@0 37 // CHECK#4
michael@0 38 try{
michael@0 39 throw 2*2;
michael@0 40 }
michael@0 41 catch(e){
michael@0 42 if (e!==4) $ERROR('#4: Exception ===4(operaton *). Actual: Exception ==='+ e);
michael@0 43 }
michael@0 44
michael@0 45 // CHECK#5
michael@0 46 try{
michael@0 47 throw 1+Infinity;
michael@0 48 }
michael@0 49 catch(e){
michael@0 50 if (e!==+Infinity) $ERROR('#5: Exception ===+Infinity(operaton +). Actual: Exception ==='+ e);
michael@0 51 }
michael@0 52
michael@0 53 // CHECK#6
michael@0 54 try{
michael@0 55 throw 1-Infinity;
michael@0 56 }
michael@0 57 catch(e){
michael@0 58 if (e!==-Infinity) $ERROR('#6: Exception ===-Infinity(operaton -). Actual: Exception ==='+ e);
michael@0 59 }
michael@0 60
michael@0 61 // CHECK#7
michael@0 62 try{
michael@0 63 throw 10/5;
michael@0 64 }
michael@0 65 catch(e){
michael@0 66 if (e!==2) $ERROR('#7: Exception ===2(operaton /). Actual: Exception ==='+ e);
michael@0 67 }
michael@0 68
michael@0 69 // CHECK#8
michael@0 70 try{
michael@0 71 throw 8>>2;
michael@0 72 }
michael@0 73 catch(e){
michael@0 74 if (e!==2) $ERROR('#8: Exception ===2(operaton >>). Actual: Exception ==='+ e);
michael@0 75 }
michael@0 76
michael@0 77 // CHECK#9
michael@0 78 try{
michael@0 79 throw 2<<2;
michael@0 80 }
michael@0 81 catch(e){
michael@0 82 if (e!==8) $ERROR('#9: Exception ===8(operaton <<). Actual: Exception ==='+ e);
michael@0 83 }
michael@0 84
michael@0 85 // CHECK#10
michael@0 86 try{
michael@0 87 throw 123%100;
michael@0 88 }
michael@0 89 catch(e){
michael@0 90 if (e!==23) $ERROR('#10: Exception ===23(operaton %). Actual: Exception ==='+ e);
michael@0 91 }
michael@0 92

mercurial