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
|
// Copyright (C) 2017 Caio Lima. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Invalid String into BigInt constructor should throw SyntaxError
esid: sec-string-to-bigint
info: |
Apply the algorithm in 3.1.3.1 with the following changes:
- Replace the StrUnsignedDecimalLiteral production with DecimalDigits
to not allow decimal points or exponents.
features: [BigInt]
---*/
assert.throws(SyntaxError, function() {
BigInt("10n");
});
assert.throws(SyntaxError, function() {
BigInt("10x");
});
assert.throws(SyntaxError, function() {
BigInt("10b");
});
assert.throws(SyntaxError, function() {
BigInt("10.5");
});
assert.throws(SyntaxError, function() {
BigInt("0b");
});
assert.throws(SyntaxError, function() {
BigInt("-0x1");
});
assert.throws(SyntaxError, function() {
BigInt("-0XFFab");
});
assert.throws(SyntaxError, function() {
BigInt("0oa");
});
assert.throws(SyntaxError, function() {
BigInt("000 12");
});
assert.throws(SyntaxError, function() {
BigInt("0o");
});
assert.throws(SyntaxError, function() {
BigInt("0x");
});
assert.throws(SyntaxError, function() {
BigInt("00o");
});
assert.throws(SyntaxError, function() {
BigInt("00b");
});
assert.throws(SyntaxError, function() {
BigInt("00x");
});
|