mirror of
https://github.com/tc39/test262.git
synced 2025-10-22 08:13:55 +02:00
- external\contributions\: test contributions to Test262 from external entities such as Microsoft and Google. This directory consists of the external tests without any modifications - test\harness\: test harness used to run Test262 tests. Presently web-based - test\suite\: suite of vendor-neutral ECMAScript test cases conforming to the ES5 spec - tools\: among other things this includes a set of tools used to convert various external test contributions to a format the Test262 test harness can consume - website\: an archived copy of the http://test262.ecmascript.org website
59 lines
908 B
JavaScript
59 lines
908 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* @name: S13_A16;
|
|
* @section: 13;
|
|
* @assertion: Any separators are admitted between declaration chunks;
|
|
* @description: Inserting separators between declaration chunks;
|
|
*/
|
|
|
|
|
|
// Converted for Test262 from original Sputnik source
|
|
|
|
ES5Harness.registerTest( {
|
|
id: "S13_A16",
|
|
|
|
path: "13",
|
|
|
|
description: "Inserting separators between declaration chunks",
|
|
|
|
test: function testcase() {
|
|
function
|
|
x
|
|
(
|
|
)
|
|
{
|
|
}
|
|
;
|
|
|
|
x();
|
|
|
|
function y ( ) {};
|
|
|
|
y();
|
|
|
|
function
|
|
|
|
z
|
|
|
|
(
|
|
|
|
)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
;
|
|
|
|
z();
|
|
|
|
eval("function\u0009\u2029w(\u000C)\u00A0{\u000D};");
|
|
|
|
w();
|
|
|
|
}
|
|
});
|
|
|