Wed, 31 Dec 2014 07:53:36 +0100
Correct small whitespace inconsistency, lost while renaming variables.
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();