2017-06-12 23:59:14 +02:00
|
|
|
# Proposed language features
|
|
|
|
#
|
|
|
|
# This project accepts tests for language proposals that have reached stage 3
|
|
|
|
# in TC39's standardization process. Those tests should be annotated with a
|
|
|
|
# dedicated feature flag so that consumers may more easily omit them as
|
|
|
|
# necessary.
|
|
|
|
#
|
|
|
|
# https://github.com/tc39/process-document
|
|
|
|
|
2018-08-11 06:49:01 +02:00
|
|
|
# Object.fromEntries
|
|
|
|
# https://github.com/tc39/proposal-object-from-entries
|
|
|
|
Object.fromEntries
|
|
|
|
|
2017-08-23 20:34:25 +02:00
|
|
|
# BigInt
|
|
|
|
# https://github.com/tc39/proposal-bigint
|
|
|
|
BigInt
|
|
|
|
|
2017-08-22 22:52:32 +02:00
|
|
|
# Class Fields
|
|
|
|
# https://github.com/tc39/proposal-class-fields
|
2017-11-28 18:48:02 +01:00
|
|
|
class-fields-public
|
|
|
|
class-fields-private
|
2017-08-22 22:52:32 +02:00
|
|
|
|
2018-08-30 03:15:52 +02:00
|
|
|
# Static Class Fields & Methods:
|
2018-07-30 23:20:37 +02:00
|
|
|
# https://github.com/tc39/proposal-static-class-features/
|
|
|
|
class-static-fields-public
|
|
|
|
class-static-fields-private
|
|
|
|
class-static-methods-private
|
|
|
|
|
2018-08-30 03:15:52 +02:00
|
|
|
# Private methods and getter/setters
|
|
|
|
# https://github.com/tc39/proposal-private-methods
|
|
|
|
class-methods-private
|
|
|
|
|
2018-06-05 20:17:20 +02:00
|
|
|
# Dynamic Import
|
|
|
|
# https://github.com/tc39/proposal-dynamic-import
|
|
|
|
dynamic-import
|
|
|
|
|
2017-07-26 08:06:12 +02:00
|
|
|
# Promise.prototype.finally
|
|
|
|
# https://github.com/tc39/proposal-promise-finally
|
|
|
|
Promise.prototype.finally
|
|
|
|
|
2017-06-12 23:59:14 +02:00
|
|
|
# Async Iteration and Generators
|
|
|
|
# https://github.com/tc39/proposal-async-iteration
|
|
|
|
async-iteration
|
|
|
|
Symbol.asyncIterator
|
|
|
|
|
|
|
|
# Object rest/spread properties
|
|
|
|
# https://github.com/tc39/proposal-object-rest-spread
|
|
|
|
object-rest
|
|
|
|
object-spread
|
|
|
|
|
2017-08-18 23:19:48 +02:00
|
|
|
# Optional Catch Binding
|
|
|
|
# https://github.com/tc39/proposal-optional-catch-binding
|
|
|
|
optional-catch-binding
|
|
|
|
|
2017-06-12 23:59:14 +02:00
|
|
|
# RegExp s (dotAll) flag
|
|
|
|
# https://github.com/tc39/proposal-regexp-dotall-flag
|
|
|
|
regexp-dotall
|
|
|
|
|
|
|
|
# RegExp lookBehind
|
|
|
|
# https://github.com/tc39/proposal-regexp-lookbehind
|
|
|
|
regexp-lookbehind
|
|
|
|
|
|
|
|
# RegExp named groups capturing
|
|
|
|
# https://github.com/tc39/proposal-regexp-named-groups
|
|
|
|
regexp-named-groups
|
|
|
|
|
|
|
|
# RegExp Unicode Property Escapes
|
|
|
|
# https://github.com/tc39/proposal-regexp-unicode-property-escapes
|
|
|
|
regexp-unicode-property-escapes
|
|
|
|
|
|
|
|
# Shared Memory and atomics
|
|
|
|
# https://github.com/tc39/ecmascript_sharedmem
|
2017-09-08 18:30:23 +02:00
|
|
|
Atomics
|
2017-06-12 23:59:14 +02:00
|
|
|
SharedArrayBuffer
|
|
|
|
|
2018-05-22 21:47:50 +02:00
|
|
|
# Array.prototype.flat and Array.prototype.flatMap
|
2018-01-05 20:55:19 +01:00
|
|
|
# https://github.com/tc39/proposal-flatMap
|
2018-05-22 21:47:50 +02:00
|
|
|
Array.prototype.flat
|
2018-01-05 20:55:19 +01:00
|
|
|
Array.prototype.flatMap
|
|
|
|
|
2017-10-02 16:41:34 +02:00
|
|
|
# String Trimming
|
|
|
|
# https://github.com/tc39/proposal-string-left-right-trim
|
|
|
|
# Includes all tests for:
|
|
|
|
# String.prototype.{trimStart, trimEnd, trimLeft, trimRight }
|
|
|
|
string-trimming
|
2018-01-25 20:37:48 +01:00
|
|
|
String.prototype.trimEnd
|
|
|
|
String.prototype.trimStart
|
2017-10-02 16:41:34 +02:00
|
|
|
|
2017-09-28 16:52:08 +02:00
|
|
|
# Numeric Separator Literal
|
|
|
|
# https://github.com/tc39/proposal-numeric-separator
|
|
|
|
numeric-separator-literal
|
|
|
|
|
2018-03-18 04:48:31 +01:00
|
|
|
# String.prototype.matchAll
|
|
|
|
# https://github.com/tc39/proposal-string-matchall
|
|
|
|
String.prototype.matchAll
|
|
|
|
Symbol.matchAll
|
|
|
|
|
2018-06-07 15:39:02 +02:00
|
|
|
# Symbol.prototype.description
|
|
|
|
# https://github.com/tc39/proposal-symbol-description
|
|
|
|
Symbol.prototype.description
|
|
|
|
|
2018-05-08 20:19:44 +02:00
|
|
|
# ECMAScript ⊃ JSON
|
|
|
|
# https://github.com/tc39/proposal-json-superset
|
|
|
|
json-superset
|
|
|
|
|
2018-09-24 08:46:53 +02:00
|
|
|
# Well-formed JSON.stringify
|
|
|
|
# https://github.com/tc39/proposal-well-formed-stringify
|
|
|
|
well-formed-json-stringify
|
|
|
|
|
2018-07-06 12:03:39 +02:00
|
|
|
# Intl.ListFormat
|
|
|
|
# https://github.com/tc39/proposal-intl-list-format
|
|
|
|
Intl.ListFormat
|
|
|
|
|
2018-04-27 09:20:45 +02:00
|
|
|
# Intl.Locale
|
|
|
|
# https://github.com/tc39/proposal-intl-locale
|
|
|
|
Intl.Locale
|
|
|
|
|
2018-06-26 20:02:29 +02:00
|
|
|
# Intl.RelativeTimeFormat
|
|
|
|
# https://github.com/tc39/proposal-intl-relative-time
|
|
|
|
Intl.RelativeTimeFormat
|
|
|
|
|
2018-07-06 12:22:42 +02:00
|
|
|
# Intl.Segmenter
|
|
|
|
# https://github.com/tc39/proposal-intl-segmenter
|
|
|
|
Intl.Segmenter
|
|
|
|
|
2018-06-19 00:00:19 +02:00
|
|
|
# Global
|
|
|
|
# https://github.com/tc39/proposal-global
|
2018-07-26 02:11:53 +02:00
|
|
|
globalThis
|
2018-06-19 00:00:19 +02:00
|
|
|
|
2018-06-28 21:46:36 +02:00
|
|
|
# `export * as namespace from module` consensus PR
|
|
|
|
# https://github.com/tc39/ecma262/pull/1174
|
|
|
|
export-star-as-namespace-from-module
|
|
|
|
|
2017-06-12 23:59:14 +02:00
|
|
|
# Standard language features
|
|
|
|
#
|
|
|
|
# Language features that have been included in a published version of the
|
|
|
|
# ECMA-262 specification. These flags are largely maintained for historical
|
|
|
|
# reasons, though their use for relatively new features (i.e. prior to
|
|
|
|
# availability across major implementations) is appreciated.
|
|
|
|
|
|
|
|
ArrayBuffer
|
|
|
|
Array.prototype.values
|
|
|
|
arrow-function
|
|
|
|
async-functions
|
|
|
|
caller
|
|
|
|
class
|
2017-08-23 21:21:54 +02:00
|
|
|
computed-property-names
|
2017-06-12 23:59:14 +02:00
|
|
|
const
|
2017-09-22 20:14:06 +02:00
|
|
|
cross-realm
|
2017-06-12 23:59:14 +02:00
|
|
|
DataView
|
|
|
|
DataView.prototype.getFloat32
|
|
|
|
DataView.prototype.getFloat64
|
|
|
|
DataView.prototype.getInt16
|
|
|
|
DataView.prototype.getInt32
|
|
|
|
DataView.prototype.getInt8
|
|
|
|
DataView.prototype.getUint16
|
|
|
|
DataView.prototype.getUint32
|
|
|
|
DataView.prototype.setUint8
|
|
|
|
default-parameters
|
2018-01-11 16:47:10 +01:00
|
|
|
destructuring-assignment
|
2017-06-12 23:59:14 +02:00
|
|
|
destructuring-binding
|
2017-09-08 18:30:23 +02:00
|
|
|
for-of
|
2018-04-19 21:31:54 +02:00
|
|
|
Float32Array
|
2017-06-12 23:59:14 +02:00
|
|
|
Float64Array
|
|
|
|
generators
|
|
|
|
Int8Array
|
2018-04-19 21:31:54 +02:00
|
|
|
Int32Array
|
2017-06-12 23:59:14 +02:00
|
|
|
let
|
|
|
|
Map
|
|
|
|
new.target
|
2018-01-11 16:20:50 +01:00
|
|
|
Object.is
|
2017-06-12 23:59:14 +02:00
|
|
|
Proxy
|
|
|
|
Reflect
|
|
|
|
Reflect.construct
|
|
|
|
Reflect.set
|
|
|
|
Reflect.setPrototypeOf
|
|
|
|
Set
|
2018-06-21 22:03:08 +02:00
|
|
|
String.fromCodePoint
|
2017-10-03 23:02:29 +02:00
|
|
|
String.prototype.endsWith
|
|
|
|
String.prototype.includes
|
2017-06-12 23:59:14 +02:00
|
|
|
super
|
|
|
|
Symbol
|
|
|
|
Symbol.hasInstance
|
|
|
|
Symbol.isConcatSpreadable
|
|
|
|
Symbol.iterator
|
|
|
|
Symbol.match
|
|
|
|
Symbol.replace
|
|
|
|
Symbol.search
|
|
|
|
Symbol.species
|
|
|
|
Symbol.split
|
|
|
|
Symbol.toPrimitive
|
|
|
|
Symbol.toStringTag
|
|
|
|
Symbol.unscopables
|
|
|
|
tail-call-optimization
|
|
|
|
template
|
|
|
|
TypedArray
|
2017-09-25 20:41:08 +02:00
|
|
|
u180e
|
2017-06-12 23:59:14 +02:00
|
|
|
Uint8Array
|
2017-11-01 15:54:05 +01:00
|
|
|
Uint16Array
|
2018-04-19 21:31:54 +02:00
|
|
|
Uint8ClampedArray
|
2017-06-12 23:59:14 +02:00
|
|
|
WeakMap
|
|
|
|
WeakSet
|
2017-10-17 00:46:59 +02:00
|
|
|
|
|
|
|
# Test-harness features requiring host environment/test runner support
|
|
|
|
#
|
|
|
|
# The rare cases where testing language functionality requires non-standard
|
|
|
|
# language features, exposed through global-environment functions on the $262
|
|
|
|
# object, go here.
|
|
|
|
|
2017-10-19 21:03:21 +02:00
|
|
|
IsHTMLDDA
|