Skip to content

Commit e4bb197

Browse files
Fixed up flags on test cases and stray newline.
1 parent 146afdd commit e4bb197

File tree

6 files changed

+0
-6
lines changed

6 files changed

+0
-6
lines changed

tests/cases/compiler/bigintIndex.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
// @target: esnext
2-
// @experimentalBigInt: true
32

43
// @filename: a.ts
54
interface BigIntIndex<E> {

tests/cases/compiler/bigintWithLib.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// @experimentalBigInt: true
21
// @target: esnext
32
// @declaration: true
43

tests/cases/compiler/bigintWithoutLib.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// @experimentalBigInt: true
21
// @target: es5
32

43
// Every line should error because these builtins are not declared

tests/cases/compiler/numberVsBigIntOperations.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// @experimentalBigInt: true
21
// @target: esnext
32

43
// Cannot mix bigints and numbers

tests/cases/compiler/parseBigInt.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// @experimentalBigInt: true
21
// @target: esnext
32

43
// All bases should allow "n" suffix

tests/cases/compiler/warnExperimentalBigIntLiteral.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,3 @@ let bigintType: bigint; // should not error
55
let bigintLiteralType: 123n; // should not error when used as type
66
let bigintNegativeLiteralType: -123n; // should not error when used as type
77
const bigintNumber = 123n * 0b1111n + 0o444n * 0x7fn; // each literal should error
8-

0 commit comments

Comments
 (0)