diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-05-19 23:11:17 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-05-19 23:11:17 +0200 |
commit | 162e22a7de3026b676156a2aad29909fe3795dba (patch) | |
tree | 5f289528d555a2b7f2906c72591773814d6e0ea4 /js/src/vm/CommonPropertyNames.h | |
parent | c72afc3c8c3f1df53d241c45dd21aa1b2a6c8e50 (diff) | |
download | uxp-162e22a7de3026b676156a2aad29909fe3795dba.tar.gz |
Implement array.flat and array.flatMap
Self-hosted implementation that adds both functions and adds them to
@@unscopables as specced in ES2019.
Resolves #1095
Diffstat (limited to 'js/src/vm/CommonPropertyNames.h')
-rw-r--r-- | js/src/vm/CommonPropertyNames.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/js/src/vm/CommonPropertyNames.h b/js/src/vm/CommonPropertyNames.h index e971dc8443..8a36df0836 100644 --- a/js/src/vm/CommonPropertyNames.h +++ b/js/src/vm/CommonPropertyNames.h @@ -115,6 +115,8 @@ macro(firstDayOfWeek, firstDayOfWeek, "firstDayOfWeek") \ macro(fix, fix, "fix") \ macro(flags, flags, "flags") \ + macro(flat, flat, "flat") \ + macro(flatMap, flatMap, "flatMap") \ macro(float32, float32, "float32") \ macro(Float32x4, Float32x4, "Float32x4") \ macro(float64, float64, "float64") \ |