diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-02-22 21:07:48 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-02-22 21:07:48 +0100 |
commit | b1cd96989bb5107f83895c2320e0046d84b448ab (patch) | |
tree | 468d90d65d7cb753f0e99fada6bc6798a3ff0e31 /js/src/vm/RegExpObject.cpp | |
parent | a7888b8cf20691a4090715ab9b055ec3cb75f5e8 (diff) | |
download | UXP-b1cd96989bb5107f83895c2320e0046d84b448ab.tar UXP-b1cd96989bb5107f83895c2320e0046d84b448ab.tar.gz UXP-b1cd96989bb5107f83895c2320e0046d84b448ab.tar.lz UXP-b1cd96989bb5107f83895c2320e0046d84b448ab.tar.xz UXP-b1cd96989bb5107f83895c2320e0046d84b448ab.zip |
Revert 1320408 part 15: Make addDataProperty static
Diffstat (limited to 'js/src/vm/RegExpObject.cpp')
-rw-r--r-- | js/src/vm/RegExpObject.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/js/src/vm/RegExpObject.cpp b/js/src/vm/RegExpObject.cpp index cd0b54c9d..6223fc10d 100644 --- a/js/src/vm/RegExpObject.cpp +++ b/js/src/vm/RegExpObject.cpp @@ -299,8 +299,7 @@ RegExpObject::assignInitialShape(ExclusiveContext* cx, Handle<RegExpObject*> sel JS_STATIC_ASSERT(LAST_INDEX_SLOT == 0); /* The lastIndex property alone is writable but non-configurable. */ - return NativeObject::addDataProperty(cx, self, cx->names().lastIndex, LAST_INDEX_SLOT, - JSPROP_PERMANENT); + return self->addDataProperty(cx, cx->names().lastIndex, LAST_INDEX_SLOT, JSPROP_PERMANENT); } void |