Wed, 31 Dec 2014 13:27:57 +0100
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 | * 1. Evaluate Expression |
michael@0 | 6 | * |
michael@0 | 7 | * @path ch12/12.13/S12.13_A3_T1.js |
michael@0 | 8 | * @description Evaluating boolean expression |
michael@0 | 9 | */ |
michael@0 | 10 | |
michael@0 | 11 | // CHECK#1 |
michael@0 | 12 | var b=true; |
michael@0 | 13 | try{ |
michael@0 | 14 | throw b&&false; |
michael@0 | 15 | } |
michael@0 | 16 | catch(e){ |
michael@0 | 17 | if (e!==false) $ERROR('#1: Exception === false(operaton &&). Actual: Exception ==='+ e ); |
michael@0 | 18 | } |
michael@0 | 19 | |
michael@0 | 20 | // CHECK#2 |
michael@0 | 21 | var b=true; |
michael@0 | 22 | try{ |
michael@0 | 23 | throw b||false; |
michael@0 | 24 | } |
michael@0 | 25 | catch(e){ |
michael@0 | 26 | if (e!==true) $ERROR('#2: Exception === true(operaton ||). Actual: Exception ==='+ e ); |
michael@0 | 27 | } |
michael@0 | 28 | |
michael@0 | 29 | // CHECK#3 |
michael@0 | 30 | try{ |
michael@0 | 31 | throw !false; |
michael@0 | 32 | } |
michael@0 | 33 | catch(e){ |
michael@0 | 34 | if (e!==true) $ERROR('#3: Exception === true(operaton !). Actual: Exception ==='+ e ); |
michael@0 | 35 | } |
michael@0 | 36 | |
michael@0 | 37 | // CHECK#4 |
michael@0 | 38 | var b=true; |
michael@0 | 39 | try{ |
michael@0 | 40 | throw !(b&&false); |
michael@0 | 41 | } |
michael@0 | 42 | catch(e){ |
michael@0 | 43 | if (e!==true) $ERROR('#4: Exception === true(operaton &&). Actual: Exception ==='+ e ); |
michael@0 | 44 | } |
michael@0 | 45 |