michael@0: // Copyright 2009 the Sputnik authors. All rights reserved. michael@0: // This code is governed by the BSD license found in the LICENSE file. michael@0: michael@0: /** michael@0: * Any separators are admitted between declaration chunks michael@0: * michael@0: * @path ch13/13.0/S13_A16.js michael@0: * @description Inserting separators between declaration chunks michael@0: */ michael@0: michael@0: function michael@0: x michael@0: ( michael@0: ) michael@0: { michael@0: } michael@0: ; michael@0: michael@0: x(); michael@0: michael@0: function y ( ) {}; michael@0: michael@0: y(); michael@0: michael@0: function michael@0: michael@0: z michael@0: michael@0: ( michael@0: michael@0: ) michael@0: michael@0: { michael@0: michael@0: } michael@0: michael@0: ; michael@0: michael@0: z(); michael@0: michael@0: eval("function\u0009\u2029w(\u000C)\u00A0{\u000D};"); michael@0: michael@0: w(); michael@0: