js/src/tests/test262/ch12/12.7/S12.7_A2.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 * Since LineTerminator between "continue" and Identifier is not allowed, "continue" is evaluated without label
michael@0 6 *
michael@0 7 * @path ch12/12.7/S12.7_A2.js
michael@0 8 * @description Checking by using eval, inserting LineTerminator between continue and Identifier
michael@0 9 */
michael@0 10
michael@0 11 //////////////////////////////////////////////////////////////////////////////
michael@0 12 //CHECK#1
michael@0 13 try{
michael@0 14 eval("FOR1 : for(var i=1;i<2;i++){FOR1NESTED : for(var j=1;j<2;j++) { continue\u000AFOR1; } while(0);}");
michael@0 15 if (j!==2) {
michael@0 16 $ERROR('#1: Since LineTerminator(U-000A) between continue and Identifier not allowed continue evaluates without label');
michael@0 17 }
michael@0 18 } catch(e){
michael@0 19 $ERROR('#1.1: eval("FOR1 : for(var i=1;i<2;i++){FOR1NESTED : for(var j=1;j<2;j++) { continue\\u000AFOR1; } while(0);}") does not lead to throwing exception');
michael@0 20 }
michael@0 21 //
michael@0 22 //////////////////////////////////////////////////////////////////////////////
michael@0 23
michael@0 24 //////////////////////////////////////////////////////////////////////////////
michael@0 25 //CHECK#2
michael@0 26 try{
michael@0 27 eval("FOR2 : for(var i=1;i<2;i++){FOR2NESTED : for(var j=1;j<2;j++) { continue\u000DFOR2; } while(0);}");
michael@0 28 if (j!==2) {
michael@0 29 $ERROR('#2: Since LineTerminator(U-000D) between continue and Identifier not allowed continue evaluates without label');
michael@0 30 }
michael@0 31 } catch(e){
michael@0 32 $ERROR('#2.1: eval("FOR2 : for(var i=1;i<2;i++){FOR2NESTED : for(var j=1;j<2;j++) { continue\\u000DFOR2; } while(0);}") does not lead to throwing exception');
michael@0 33 }
michael@0 34 //
michael@0 35 //////////////////////////////////////////////////////////////////////////////
michael@0 36
michael@0 37 //////////////////////////////////////////////////////////////////////////////
michael@0 38 //CHECK#3
michael@0 39 try{
michael@0 40 eval("FOR3 : for(var i=1;i<2;i++){FOR3NESTED : for(var j=1;j<2;j++) { continue\u2028FOR3; } while(0);}");
michael@0 41 if (j!==2) {
michael@0 42 $ERROR('#3: Since LineTerminator(U-2028) between continue and Identifier not allowed continue evaluates without label');
michael@0 43 }
michael@0 44 } catch(e){
michael@0 45 $ERROR('#3.1: eval("FOR3 : for(var i=1;i<2;i++){FOR3NESTED : for(var j=1;j<2;j++) { continue\\u2028FOR3; } while(0);}") does not lead to throwing exception');
michael@0 46 }
michael@0 47 //
michael@0 48 //////////////////////////////////////////////////////////////////////////////
michael@0 49
michael@0 50 //////////////////////////////////////////////////////////////////////////////
michael@0 51 //CHECK#4
michael@0 52 try{
michael@0 53 eval("FOR4 : for(var i=1;i<2;i++){FOR4NESTED : for(var j=1;j<2;j++) { continue\u2029FOR4; } while(0);}");
michael@0 54 if (j!==2) {
michael@0 55 $ERROR('#4: Since LineTerminator(U-2029) between continue and Identifier not allowed continue evaluates without label');
michael@0 56 }
michael@0 57 } catch(e){
michael@0 58 $ERROR('#4.1: eval("FOR4 : for(var i=1;i<2;i++){FOR4NESTED : for(var j=1;j<2;j++) { continue\\u2029FOR4; } while(0);}"); does not lead to throwing exception');
michael@0 59 }
michael@0 60 //
michael@0 61 //////////////////////////////////////////////////////////////////////////////
michael@0 62
michael@0 63
michael@0 64

mercurial