David Fugate 7396642963 This commit includes Microsoft's initial contributions to Test262:
- 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
2010-10-18 20:50:07 -07:00

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();
}
});