TypeScript/tests/baselines/reference/indexAt(target=es2021).js
Kagami Sascha Rosylight ae582a22ee
Add target: "es2022" (#46291)
* Add `target: "es2022"`

* Add Object.hasOwn

* formatToParts is es2018

* ref update

* optional parameter

* Revert "optional parameter"

This reverts commit e67d6e5f60.

* undefined

* error cause

* Lint fix

Co-authored-by: Orta <git@orta.io>
2021-11-04 10:55:11 -07:00

31 lines
669 B
TypeScript

//// [indexAt.ts]
[0].at(0);
"foo".at(0);
new Int8Array().at(0);
new Uint8Array().at(0);
new Uint8ClampedArray().at(0);
new Int16Array().at(0);
new Uint16Array().at(0);
new Int32Array().at(0);
new Uint32Array().at(0);
new Float32Array().at(0);
new Float64Array().at(0);
new BigInt64Array().at(0);
new BigUint64Array().at(0);
//// [indexAt.js]
[0].at(0);
"foo".at(0);
new Int8Array().at(0);
new Uint8Array().at(0);
new Uint8ClampedArray().at(0);
new Int16Array().at(0);
new Uint16Array().at(0);
new Int32Array().at(0);
new Uint32Array().at(0);
new Float32Array().at(0);
new Float64Array().at(0);
new BigInt64Array().at(0);
new BigUint64Array().at(0);