mirror of https://github.com/tc39/test262.git
Remove test code between license and front matter
The script that we use for updating SpiderMonkey's copy of test262 doesn't like this. @rwaldron r?
This commit is contained in:
parent
7376666039
commit
734c867ac3
|
@ -1,9 +1,5 @@
|
||||||
// Copyright 2009 the Sputnik authors. All rights reserved.
|
// Copyright 2009 the Sputnik authors. All rights reserved.
|
||||||
// This code is governed by the BSD license found in the LICENSE file.
|
// This code is governed by the BSD license found in the LICENSE file.
|
||||||
assert.sameValue(parseInt("\u00201"), parseInt("1"), 'parseInt("\\u00201") must return the same value returned by parseInt("1")');
|
|
||||||
assert.sameValue(parseInt("\u0020\u0020-1"), parseInt("-1"), 'parseInt("\\u0020\\u0020-1") must return the same value returned by parseInt("-1")');
|
|
||||||
assert.sameValue(parseInt(" 1"), parseInt("1"), 'parseInt(" 1") must return the same value returned by parseInt("1")');
|
|
||||||
assert.sameValue(parseInt(" 1"), parseInt("1"), 'parseInt(" 1") must return the same value returned by parseInt("1")');
|
|
||||||
|
|
||||||
/*---
|
/*---
|
||||||
info: Operator remove leading StrWhiteSpaceChar
|
info: Operator remove leading StrWhiteSpaceChar
|
||||||
|
@ -11,6 +7,11 @@ esid: sec-parseint-string-radix
|
||||||
description: "StrWhiteSpaceChar :: SP (U+0020)"
|
description: "StrWhiteSpaceChar :: SP (U+0020)"
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
assert.sameValue(parseInt("\u00201"), parseInt("1"), 'parseInt("\\u00201") must return the same value returned by parseInt("1")');
|
||||||
|
assert.sameValue(parseInt("\u0020\u0020-1"), parseInt("-1"), 'parseInt("\\u0020\\u0020-1") must return the same value returned by parseInt("-1")');
|
||||||
|
assert.sameValue(parseInt(" 1"), parseInt("1"), 'parseInt(" 1") must return the same value returned by parseInt("1")');
|
||||||
|
assert.sameValue(parseInt(" 1"), parseInt("1"), 'parseInt(" 1") must return the same value returned by parseInt("1")');
|
||||||
|
|
||||||
assert.sameValue(
|
assert.sameValue(
|
||||||
parseInt(" \u0020 \u0020-1"),
|
parseInt(" \u0020 \u0020-1"),
|
||||||
parseInt("-1"),
|
parseInt("-1"),
|
||||||
|
|
Loading…
Reference in New Issue