Add new-style octal literals and make the B and the O case insensitive.
This commit is contained in:
@@ -97,3 +97,18 @@ destructuring_arguments: {
|
||||
}
|
||||
}
|
||||
|
||||
binary_literals: {
|
||||
input: {
|
||||
0b1001;
|
||||
0B1001;
|
||||
0o11;
|
||||
0O11;
|
||||
}
|
||||
|
||||
expect: {
|
||||
9;
|
||||
9;
|
||||
9;
|
||||
9;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user