1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
// Any copyright is dedicated to the Public Domain.
// http://creativecommons.org/licenses/publicdomain/
//-----------------------------------------------------------------------------
var BUGNUMBER = 894026;
var summary = "Implement ES6 binary literals";
print(BUGNUMBER + ": " + summary);
/**************
* BEGIN TEST *
**************/
var chars = ['b', 'B'];
for (var i = 0; i < 2; i++)
{
if (i === 2)
{
chars.forEach(function(v)
{
try
{
eval('0' + v + i);
throw "didn't throw";
}
catch (e)
{
assertEq(e instanceof SyntaxError, true,
"no syntax error evaluating 0" + v + i + ", " +
"got " + e);
}
});
continue;
}
for (var j = 0; j < 2; j++)
{
if (j === 2)
{
chars.forEach(function(v)
{
try
{
eval('0' + v + i + j);
throw "didn't throw";
}
catch (e)
{
assertEq(e instanceof SyntaxError, true,
"no syntax error evaluating 0" + v + i + j + ", " +
"got " + e);
}
});
continue;
}
for (var k = 0; k < 2; k++)
{
if (k === 2)
{
chars.forEach(function(v)
{
try
{
eval('0' + v + i + j + k);
throw "didn't throw";
}
catch (e)
{
assertEq(e instanceof SyntaxError, true,
"no syntax error evaluating 0" + v + i + j + k + ", " +
"got " + e);
}
});
continue;
}
chars.forEach(function(v)
{
assertEq(eval('0' + v + i + j + k), i * 4 + j * 2 + k);
});
}
}
}
chars.forEach(function(v)
{
try
{
}
catch (e)
{
assertEq(e instanceof SyntaxError, true,
"no syntax error evaluating 0" + v + ", got " + e);
}
});
// Off-by-one check: '/' immediately precedes '0'.
assertEq(0b110/1, 6);
assertEq(0B10110/1, 22);
function strict()
{
"use strict";
return 0b11010101;
}
assertEq(strict(), 128 + 64 + 16 + 4 + 1);
/******************************************************************************/
if (typeof reportCompare === "function")
reportCompare(true, true);
print("Tests complete");
|