Add new-style octal literals and make the B and the O case insensitive.

This commit is contained in:
Fábio Santos
2015-08-17 11:50:56 +01:00
parent 6f864402d3
commit a8f8aa518b
2 changed files with 19 additions and 1 deletions

View File

@@ -97,3 +97,18 @@ destructuring_arguments: {
}
}
binary_literals: {
input: {
0b1001;
0B1001;
0o11;
0O11;
}
expect: {
9;
9;
9;
9;
}
}