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 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
|
=== tests/cases/compiler/parseBigInt.ts ===
// All bases should allow "n" suffix
const bin = 0b101, binBig = 0b101n; // 5, 5n
>bin : 5
>0b101 : 5
>binBig : 5n
>0b101n : 5n
const oct = 0o567, octBig = 0o567n; // 375, 375n
>oct : 375
>0o567 : 375
>octBig : 375n
>0o567n : 375n
const hex = 0xC0B, hexBig = 0xC0Bn; // 3083, 3083n
>hex : 3083
>0xC0B : 3083
>hexBig : 3083n
>0xC0Bn : 3083n
const dec = 123, decBig = 123n;
>dec : 123
>123 : 123
>decBig : 123n
>123n : 123n
// Test literals whose values overflow a 53-bit integer
// These should be represented exactly in the emitted JS
const largeBin = 0b10101010101010101010101010101010101010101010101010101010101n; // 384307168202282325n
>largeBin : 384307168202282325n
>0b10101010101010101010101010101010101010101010101010101010101n : 384307168202282325n
const largeOct = 0o123456712345671234567n; // 1505852261029722487n
>largeOct : 1505852261029722487n
>0o123456712345671234567n : 1505852261029722487n
const largeDec = 12345678091234567890n;
>largeDec : 12345678091234567890n
>12345678091234567890n : 12345678091234567890n
const largeHex = 0x1234567890abcdefn; // 1311768467294899695n
>largeHex : 1311768467294899695n
>0x1234567890abcdefn : 1311768467294899695n
// Test literals with separators
const separatedBin = 0b010_10_1n; // 21n
>separatedBin : 21n
>0b010_10_1n : 21n
const separatedOct = 0o1234_567n; // 342391n
>separatedOct : 342391n
>0o1234_567n : 342391n
const separatedDec = 123_456_789n;
>separatedDec : 123456789n
>123_456_789n : 123456789n
const separatedHex = 0x0_abcdefn; // 11259375n
>separatedHex : 11259375n
>0x0_abcdefn : 11259375n
// Test parsing literals of different bit sizes
// to ensure that parsePseudoBigInt() allocates enough space
const zero = 0b0n;
>zero : 0n
>0b0n : 0n
const oneBit = 0b1n;
>oneBit : 1n
>0b1n : 1n
const twoBit = 0b11n; // 3n
>twoBit : 3n
>0b11n : 3n
const threeBit = 0b111n; // 7n
>threeBit : 7n
>0b111n : 7n
const fourBit = 0b1111n; // 15n
>fourBit : 15n
>0b1111n : 15n
const fiveBit = 0b11111n; // 31n
>fiveBit : 31n
>0b11111n : 31n
const sixBit = 0b111111n; // 63n
>sixBit : 63n
>0b111111n : 63n
const sevenBit = 0b1111111n; // 127n
>sevenBit : 127n
>0b1111111n : 127n
const eightBit = 0b11111111n; // 255n
>eightBit : 255n
>0b11111111n : 255n
const nineBit = 0b111111111n; // 511n
>nineBit : 511n
>0b111111111n : 511n
const tenBit = 0b1111111111n; // 1023n
>tenBit : 1023n
>0b1111111111n : 1023n
const elevenBit = 0b11111111111n; // 2047n
>elevenBit : 2047n
>0b11111111111n : 2047n
const twelveBit = 0b111111111111n; // 4095n
>twelveBit : 4095n
>0b111111111111n : 4095n
const thirteenBit = 0b1111111111111n; // 8191n
>thirteenBit : 8191n
>0b1111111111111n : 8191n
const fourteenBit = 0b11111111111111n; // 16383n
>fourteenBit : 16383n
>0b11111111111111n : 16383n
const fifteenBit = 0b111111111111111n; // 32767n
>fifteenBit : 32767n
>0b111111111111111n : 32767n
const sixteenBit = 0b1111111111111111n; // 65535n
>sixteenBit : 65535n
>0b1111111111111111n : 65535n
const seventeenBit = 0b11111111111111111n; // 131071n
>seventeenBit : 131071n
>0b11111111111111111n : 131071n
// Test negative literals
const neg = -123n;
>neg : -123n
>-123n : -123n
>123n : 123n
const negHex: -16n = -0x10n;
>negHex : -16n
>-16n : -16n
>16n : 16n
>-0x10n : -16n
>0x10n : 16n
// Test normalization of bigints -- all of these should succeed
const negZero: 0n = -0n;
>negZero : 0n
>-0n : 0n
>0n : 0n
const baseChange: 255n = 0xFFn;
>baseChange : 255n
>0xFFn : 255n
const leadingZeros: 0xFFn = 0x000000FFn;
>leadingZeros : 255n
>0x000000FFn : 255n
// Plus not allowed on literals
const unaryPlus = +123n;
>unaryPlus : number
>+123n : number
>123n : 123n
const unaryPlusHex = +0x123n;
>unaryPlusHex : number
>+0x123n : number
>0x123n : 291n
// Parsing errors
// In separate blocks because they each declare an "n" variable
{ const legacyOct = 0123n; }
>legacyOct : 123
>0123 : 123
>n : any
{ const scientific = 1e2n; }
>scientific : 100
>1e2n : 100
{ const decimal = 4.1n; }
>decimal : 4.1
>4.1n : 4.1
{ const leadingDecimal = .1n; }
>leadingDecimal : 0.1
>.1n : 0.1
const emptyBinary = 0bn; // should error but infer 0n
>emptyBinary : 0n
>0bn : 0n
const emptyOct = 0on; // should error but infer 0n
>emptyOct : 0n
>0on : 0n
const emptyHex = 0xn; // should error but infer 0n
>emptyHex : 0n
>0xn : 0n
const leadingSeparator = _123n;
>leadingSeparator : any
>_123n : any
const trailingSeparator = 123_n;
>trailingSeparator : 123n
>123_n : 123n
const doubleSeparator = 123_456__789n;
>doubleSeparator : 123456789n
>123_456__789n : 123456789n
// Using literals as types
const oneTwoOrThree = (x: 1n | 2n | 3n): bigint => x ** 2n;
>oneTwoOrThree : (x: 1n | 3n | 2n) => bigint
>(x: 1n | 2n | 3n): bigint => x ** 2n : (x: 1n | 3n | 2n) => bigint
>x : 1n | 3n | 2n
>x ** 2n : bigint
>x : 1n | 3n | 2n
>2n : 2n
oneTwoOrThree(0n); oneTwoOrThree(1n); oneTwoOrThree(2n); oneTwoOrThree(3n);
>oneTwoOrThree(0n) : bigint
>oneTwoOrThree : (x: 1n | 3n | 2n) => bigint
>0n : 0n
>oneTwoOrThree(1n) : bigint
>oneTwoOrThree : (x: 1n | 3n | 2n) => bigint
>1n : 1n
>oneTwoOrThree(2n) : bigint
>oneTwoOrThree : (x: 1n | 3n | 2n) => bigint
>2n : 2n
>oneTwoOrThree(3n) : bigint
>oneTwoOrThree : (x: 1n | 3n | 2n) => bigint
>3n : 3n
oneTwoOrThree(0); oneTwoOrThree(1); oneTwoOrThree(2); oneTwoOrThree(3);
>oneTwoOrThree(0) : bigint
>oneTwoOrThree : (x: 1n | 3n | 2n) => bigint
>0 : 0
>oneTwoOrThree(1) : bigint
>oneTwoOrThree : (x: 1n | 3n | 2n) => bigint
>1 : 1
>oneTwoOrThree(2) : bigint
>oneTwoOrThree : (x: 1n | 3n | 2n) => bigint
>2 : 2
>oneTwoOrThree(3) : bigint
>oneTwoOrThree : (x: 1n | 3n | 2n) => bigint
>3 : 3
|