From 6058b4471da7b75ef861fc417bc9ff44c54bdcd9 Mon Sep 17 00:00:00 2001 From: Adam Klein Date: Tue, 25 Apr 2017 16:29:20 -0700 Subject: [PATCH] [ESNext] Stage --harmony-strict-legacy-accessor-builtins R=littledan@chromium.org Bug: v8:5070 Change-Id: I15d26410eafca47eec7ecd0b3ca58d608f4ae0cc Reviewed-on: https://chromium-review.googlesource.com/487029 Reviewed-by: Daniel Ehrenberg Commit-Queue: Adam Klein Cr-Commit-Position: refs/heads/master@{#44903} --- src/flag-definitions.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/flag-definitions.h b/src/flag-definitions.h index c2ea96c696..fbd6b423f4 100644 --- a/src/flag-definitions.h +++ b/src/flag-definitions.h @@ -203,20 +203,20 @@ DEFINE_IMPLICATION(es_staging, harmony) V(harmony_async_iteration, "harmony async iteration") \ V(harmony_dynamic_import, "harmony dynamic import") \ V(harmony_promise_finally, "harmony Promise.prototype.finally") \ - V(harmony_strict_legacy_accessor_builtins, \ - "treat __defineGetter__ and related functions as strict") \ V(harmony_restrict_constructor_return, \ "harmony disallow non undefined primitive return value from class " \ "constructor") // Features that are complete (but still behind --harmony/es-staging flag). -#define HARMONY_STAGED(V) \ - V(harmony_function_tostring, "harmony Function.prototype.toString") \ - V(harmony_regexp_dotall, "harmony regexp dotall flag") \ - V(harmony_regexp_lookbehind, "harmony regexp lookbehind") \ - V(harmony_regexp_named_captures, "harmony regexp named captures") \ - V(harmony_regexp_property, "harmony unicode regexp property classes") \ - V(harmony_template_escapes, \ +#define HARMONY_STAGED(V) \ + V(harmony_function_tostring, "harmony Function.prototype.toString") \ + V(harmony_regexp_dotall, "harmony regexp dotall flag") \ + V(harmony_regexp_lookbehind, "harmony regexp lookbehind") \ + V(harmony_regexp_named_captures, "harmony regexp named captures") \ + V(harmony_regexp_property, "harmony unicode regexp property classes") \ + V(harmony_strict_legacy_accessor_builtins, \ + "treat __defineGetter__ and related functions as strict") \ + V(harmony_template_escapes, \ "harmony invalid escapes in tagged template literals") // Features that are shipping (turned on by default, but internal flag remains).