mirror of https://github.com/tc39/test262.git
Cleanup
This commit is contained in:
parent
9d345b6a85
commit
c0b18dfadf
|
@ -1,14 +0,0 @@
|
||||||
// Copyright (c) 2012 Ecma International. All rights reserved.
|
|
||||||
// This code is governed by the BSD license found in the LICENSE file.
|
|
||||||
|
|
||||||
/*---
|
|
||||||
esid: sec-object.seal
|
|
||||||
description: >
|
|
||||||
Object.seal does not throw TypeError if type of first param is
|
|
||||||
a boolean primitive
|
|
||||||
info: |
|
|
||||||
If Type(O) is not Object, return O.
|
|
||||||
---*/
|
|
||||||
|
|
||||||
|
|
||||||
Object.seal(false);
|
|
|
@ -1,12 +0,0 @@
|
||||||
// Copyright (c) 2012 Ecma International. All rights reserved.
|
|
||||||
// This code is governed by the BSD license found in the LICENSE file.
|
|
||||||
|
|
||||||
/*---
|
|
||||||
esid: sec-object.seal
|
|
||||||
description: >
|
|
||||||
Object.seal does not throw TypeError if type of first param is
|
|
||||||
a number primitive
|
|
||||||
info: |
|
|
||||||
If Type(O) is not Object, return O.
|
|
||||||
---*/
|
|
||||||
Object.seal(0);
|
|
|
@ -1,13 +0,0 @@
|
||||||
// Copyright (c) 2012 Ecma International. All rights reserved.
|
|
||||||
// This code is governed by the BSD license found in the LICENSE file.
|
|
||||||
|
|
||||||
/*---
|
|
||||||
esid: sec-object.seal
|
|
||||||
description: >
|
|
||||||
Object.seal does not throw TypeError if type of first param is
|
|
||||||
a string primitive
|
|
||||||
info: |
|
|
||||||
If Type(O) is not Object, return O.
|
|
||||||
---*/
|
|
||||||
|
|
||||||
Object.seal("abc");
|
|
|
@ -1,13 +0,0 @@
|
||||||
// Copyright (c) 2012 Ecma International. All rights reserved.
|
|
||||||
// This code is governed by the BSD license found in the LICENSE file.
|
|
||||||
|
|
||||||
/*---
|
|
||||||
esid: sec-object.seal
|
|
||||||
description: >
|
|
||||||
Object.seal does not throw TypeError if type of first param is
|
|
||||||
null
|
|
||||||
info: |
|
|
||||||
If Type(O) is not Object, return O.
|
|
||||||
---*/
|
|
||||||
|
|
||||||
Object.seal(null);
|
|
|
@ -1,13 +0,0 @@
|
||||||
// Copyright (c) 2012 Ecma International. All rights reserved.
|
|
||||||
// This code is governed by the BSD license found in the LICENSE file.
|
|
||||||
|
|
||||||
/*---
|
|
||||||
esid: sec-object.seal
|
|
||||||
description: >
|
|
||||||
Object.seal does not throw TypeError if type of first param is
|
|
||||||
undefined
|
|
||||||
info: |
|
|
||||||
If Type(O) is not Object, return O.
|
|
||||||
---*/
|
|
||||||
|
|
||||||
Object.seal(undefined);
|
|
Loading…
Reference in New Issue