From 25c10e007b4dc6adc88b68f94afe3e758b68af83 Mon Sep 17 00:00:00 2001 From: John Porto Date: Thu, 9 Jun 2022 18:53:57 -0700 Subject: [PATCH] Updates Features.md Summary: Updates Hermes' Features.md to inculde ongoing/planned work. Reviewed By: neildhar Differential Revision: D37039367 fbshipit-source-id: 4574005bded77ae22a5264332a4e21dd9aa58ee9 --- doc/Features.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/doc/Features.md b/doc/Features.md index 1896e6ce799..e6b1d1a0b0b 100644 --- a/doc/Features.md +++ b/doc/Features.md @@ -31,13 +31,19 @@ Hermes plans to target ECMAScript 2015 (ES6), with some carefully considered exc ### In Progress -- `let` and `const` (block scoped variables, with support for the temporal dead zone) -- Classes and method definitions +- WeakRef +- BigInt - ES modules (`import` and `export`) - `Intl` API glue has been added to enable community contribution of a complete, spec-compliant implementation on multiple platforms - Async function (`async` and `await`). - `Symbol.prototype.description` (it's not fully spec-conformant yet. `Symbol().description` should be `undefined` but it's currently `''`). +### Planned +- RegExp match indices and named capture groups +- Expanded Intl functionality (e.g., DisplayNames, ListFormat, PluralRules, RelativeTimeFormat, and Locale) +- `let` and `const` (block scoped variables, with support for the temporal dead zone) +- Classes and method definitions + ### Excluded From Support - Realms