diff options
author | Gaming4JC <g4jc@hyperbola.info> | 2019-07-14 20:14:28 -0400 |
---|---|---|
committer | Gaming4JC <g4jc@hyperbola.info> | 2019-07-18 22:38:47 -0400 |
commit | 3048ff4346bf2021059bdecec6343c73bb26833a (patch) | |
tree | 0562ee7c2989e3415d2772fb8fb2f1ebc85000bf /js/src/vm | |
parent | 091d00f1bd22f821d3926c46dd1d6cf7fbc746f4 (diff) | |
download | UXP-3048ff4346bf2021059bdecec6343c73bb26833a.tar UXP-3048ff4346bf2021059bdecec6343c73bb26833a.tar.gz UXP-3048ff4346bf2021059bdecec6343c73bb26833a.tar.lz UXP-3048ff4346bf2021059bdecec6343c73bb26833a.tar.xz UXP-3048ff4346bf2021059bdecec6343c73bb26833a.zip |
1339395 - Part 3: Add BytecodeEmitter support for object rest and spread properties.
Diffstat (limited to 'js/src/vm')
-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 8e35e1aae..fd1c9f5e6 100644 --- a/js/src/vm/CommonPropertyNames.h +++ b/js/src/vm/CommonPropertyNames.h @@ -71,6 +71,8 @@ macro(constructor, constructor, "constructor") \ macro(continue, continue_, "continue") \ macro(ConvertAndCopyTo, ConvertAndCopyTo, "ConvertAndCopyTo") \ + macro(CopyDataProperties, CopyDataProperties, "CopyDataProperties") \ + macro(CopyDataPropertiesUnfiltered, CopyDataPropertiesUnfiltered, "CopyDataPropertiesUnfiltered") \ macro(copyWithin, copyWithin, "copyWithin") \ macro(count, count, "count") \ macro(CreateResolvingFunctions, CreateResolvingFunctions, "CreateResolvingFunctions") \ |