mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-11-18 17:21:48 +00:00
remove extra tests
This commit is contained in:
@@ -1,11 +0,0 @@
|
||||
tests/cases/conformance/parser/ecmascript5/ExportAssignments/parserExportAssignment10.ts(4,3): error TS1128: Declaration or statement expected.
|
||||
|
||||
|
||||
==== tests/cases/conformance/parser/ecmascript5/ExportAssignments/parserExportAssignment10.ts (1 errors) ====
|
||||
export default "123";
|
||||
namespace Foo {
|
||||
var foo;
|
||||
export foo;
|
||||
~~~~~~
|
||||
!!! error TS1128: Declaration or statement expected.
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
//// [parserExportAssignment10.ts]
|
||||
export default "123";
|
||||
namespace Foo {
|
||||
var foo;
|
||||
export foo;
|
||||
}
|
||||
|
||||
//// [parserExportAssignment10.js]
|
||||
"use strict";
|
||||
exports.__esModule = true;
|
||||
exports["default"] = "123";
|
||||
var Foo;
|
||||
(function (Foo) {
|
||||
var foo;
|
||||
foo;
|
||||
})(Foo || (Foo = {}));
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
export default "123";
|
||||
namespace Foo {
|
||||
var foo;
|
||||
export foo;
|
||||
}
|
||||
Reference in New Issue
Block a user