js/src/tests/test262/ch13/13.0/S13_A16.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.

     1 // Copyright 2009 the Sputnik authors.  All rights reserved.
     2 // This code is governed by the BSD license found in the LICENSE file.
     4 /**
     5  * Any separators are admitted between declaration chunks
     6  *
     7  * @path ch13/13.0/S13_A16.js
     8  * @description Inserting separators between declaration chunks
     9  */
    11 function
    12 x
    13 (
    14 )
    15 {
    16 }
    17 ;
    19 x();
    21 function                                                    y                                   (                                          )                                              {};
    23 y();
    25 function
    27 z
    29 (
    31 )
    33 {
    35 }
    37 ;
    39 z();
    41 eval("function\u0009\u2029w(\u000C)\u00A0{\u000D};");
    43 w();

mercurial