Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1058)

Side by Side Diff: test/mjsunit/harmony/numeric-literals.js

Issue 587873002: ES6: Disallow binary and octal representation in Number (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/runtime.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
11 // with the distribution. 11 // with the distribution.
12 // * Neither the name of Google Inc. nor the names of its 12 // * Neither the name of Google Inc. nor the names of its
13 // contributors may be used to endorse or promote products derived 13 // contributors may be used to endorse or promote products derived
14 // from this software without specific prior written permission. 14 // from this software without specific prior written permission.
15 // 15 //
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 27
28 // Flags: --harmony-numeric-literals 28 // Flags: --harmony-numeric-literals
29 29
30 function TestOctalLiteral() { 30 (function TestOctalLiteral() {
31 assertEquals(0, 0o0); 31 assertEquals(0, 0o0);
32 assertEquals(0, 0O0); 32 assertEquals(0, 0O0);
33 assertEquals(1, 0o1); 33 assertEquals(1, 0o1);
34 assertEquals(7, 0o7); 34 assertEquals(7, 0o7);
35 assertEquals(8, 0o10); 35 assertEquals(8, 0o10);
36 assertEquals(63, 0o77); 36 assertEquals(63, 0o77);
37 } 37 })();
38 TestOctalLiteral();
39 38
40 39
41 function TestOctalLiteralUsingNumberFunction() { 40 (function TestOctalLiteralUsingNumberFunction() {
42 assertEquals(0, Number('0o0')); 41 assertSame(NaN, Number('0o0'));
43 assertEquals(0, Number('0O0')); 42 assertSame(NaN, Number('0O0'));
44 assertEquals(1, Number('0o1')); 43 assertSame(NaN, Number('0o1'));
45 assertEquals(7, Number('0o7')); 44 assertSame(NaN, Number('0o7'));
46 assertEquals(8, Number('0o10')); 45 assertSame(NaN, Number('0o10'));
47 assertEquals(63, Number('0o77')); 46 assertSame(NaN, Number('0o77'));
48 } 47 })();
49 TestOctalLiteralUsingNumberFunction();
50 48
51 49
52 function TestBinaryLiteral() { 50 (function TestOctalLiteralUsingImplicitToNumber() {
51 assertSame(NaN, +'0o0');
52 assertSame(NaN, +'0O0');
53 assertSame(NaN, +'0o1');
54 assertSame(NaN, +'0o7');
55 assertSame(NaN, +'0o10');
56 assertSame(NaN, +'0o77');
57 })();
58
59
60 (function TestBinaryLiteral() {
53 assertEquals(0, 0b0); 61 assertEquals(0, 0b0);
54 assertEquals(0, 0B0); 62 assertEquals(0, 0B0);
55 assertEquals(1, 0b1); 63 assertEquals(1, 0b1);
56 assertEquals(2, 0b10); 64 assertEquals(2, 0b10);
57 assertEquals(3, 0b11); 65 assertEquals(3, 0b11);
58 } 66 })();
59 TestBinaryLiteral();
60 67
61 68
62 function TestBinaryLiteralUsingNumberFunction() { 69 (function TestBinaryLiteralUsingNumberFunction() {
63 assertEquals(0, Number('0b0')); 70 assertSame(NaN, Number('0b0'));
64 assertEquals(0, Number('0B0')); 71 assertSame(NaN, Number('0B0'));
65 assertEquals(1, Number('0b1')); 72 assertSame(NaN, Number('0b1'));
66 assertEquals(2, Number('0b10')); 73 assertSame(NaN, Number('0b10'));
67 assertEquals(3, Number('0b11')); 74 assertSame(NaN, Number('0b11'));
68 } 75 })();
69 TestBinaryLiteralUsingNumberFunction();
70 76
71 77
72 // parseInt should (probably) not support 0b and 0o. 78 (function TestBinaryLiteralUsingImplicitToNumber() {
73 // https://bugs.ecmascript.org/show_bug.cgi?id=1585 79 assertSame(NaN, +'0b0');
74 function TestParseIntDoesNotSupportOctalNorBinary() { 80 assertSame(NaN, +'0B0');
81 assertSame(NaN, +'0b1');
82 assertSame(NaN, +'0b10');
83 assertSame(NaN, +'0b11');
84 })();
85
86
87 (function TestParseIntDoesNotSupportOctalNorBinary() {
75 assertEquals(0, parseInt('0o77')); 88 assertEquals(0, parseInt('0o77'));
76 assertEquals(0, parseInt('0o77', 8)); 89 assertEquals(0, parseInt('0o77', 8));
77 assertEquals(0, parseInt('0b11')); 90 assertEquals(0, parseInt('0b11'));
78 assertEquals(0, parseInt('0b11', 2)); 91 assertEquals(0, parseInt('0b11', 2));
79 } 92 })();
80 TestParseIntDoesNotSupportOctalNorBinary();
81 93
82 94
83 function TestParseFloatDoesNotSupportOctalNorBinary() { 95 (function TestParseFloatDoesNotSupportOctalNorBinary() {
84 assertEquals(0, parseFloat('0o77')); 96 assertEquals(0, parseFloat('0o77'));
85 assertEquals(0, parseFloat('0b11')); 97 assertEquals(0, parseFloat('0b11'));
86 } 98 })();
87 TestParseFloatDoesNotSupportOctalNorBinary();
OLDNEW
« no previous file with comments | « src/runtime.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698