2011-09-07 08:35:18 +02:00
|
|
|
|
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
|
2014-07-22 01:09:02 +02:00
|
|
|
|
/*---
|
|
|
|
|
info: Any separators are admitted between declaration chunks
|
2014-07-25 00:41:42 +02:00
|
|
|
|
es5id: 13_A16
|
2014-07-22 01:09:02 +02:00
|
|
|
|
description: Inserting separators between declaration chunks
|
|
|
|
|
---*/
|
2011-09-07 08:35:18 +02:00
|
|
|
|
|
|
|
|
|
function
|
|
|
|
|
x
|
|
|
|
|
(
|
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
x();
|
|
|
|
|
|
|
|
|
|
function y ( ) {};
|
|
|
|
|
|
|
|
|
|
y();
|
|
|
|
|
|
|
|
|
|
function
|
|
|
|
|
|
|
|
|
|
z
|
|
|
|
|
|
|
|
|
|
(
|
|
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
z();
|
|
|
|
|
|
2018-02-04 05:12:16 +01:00
|
|
|
|
// The following function expression is expressed with literal unicode
|
|
|
|
|
// characters so that parsers may benefit from this test. The included code
|
|
|
|
|
// points are as follows:
|
|
|
|
|
//
|
|
|
|
|
// "function\u0009\u2029w(\u000C)\u00A0{\u000D}"
|
|
|
|
|
|
|
|
|
|
function
w() {
}
|
|
|
|
|
|
|
|
|
|
w();
|