summaryrefslogtreecommitdiffstats
path: root/js/src/vm/Interpreter-inl.h
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@wolfbeast.com>2019-05-16 13:13:36 +0000
committerwolfbeast <mcwerewolf@wolfbeast.com>2019-05-16 13:13:36 +0000
commit543fa1674bcb4f8c40f0ef6e4c5514ea161def5a (patch)
tree303beb6028a1169509da1dd6b38afdd081672c93 /js/src/vm/Interpreter-inl.h
parenta5c2961c4e8c0459959fc35e493e58be8e7763d6 (diff)
downloadUXP-543fa1674bcb4f8c40f0ef6e4c5514ea161def5a.tar
UXP-543fa1674bcb4f8c40f0ef6e4c5514ea161def5a.tar.gz
UXP-543fa1674bcb4f8c40f0ef6e4c5514ea161def5a.tar.lz
UXP-543fa1674bcb4f8c40f0ef6e4c5514ea161def5a.tar.xz
UXP-543fa1674bcb4f8c40f0ef6e4c5514ea161def5a.zip
Remove Unboxed Objects from vm/ Part 1 + fix deprot
Diffstat (limited to 'js/src/vm/Interpreter-inl.h')
-rw-r--r--js/src/vm/Interpreter-inl.h13
1 files changed, 4 insertions, 9 deletions
diff --git a/js/src/vm/Interpreter-inl.h b/js/src/vm/Interpreter-inl.h
index 5f476c4ff..710f1d89b 100644
--- a/js/src/vm/Interpreter-inl.h
+++ b/js/src/vm/Interpreter-inl.h
@@ -22,7 +22,6 @@
#include "vm/EnvironmentObject-inl.h"
#include "vm/Stack-inl.h"
#include "vm/String-inl.h"
-#include "vm/UnboxedObject-inl.h"
namespace js {
@@ -337,14 +336,10 @@ InitGlobalLexicalOperation(JSContext* cx, LexicalEnvironmentObject* lexicalEnvAr
inline bool
InitPropertyOperation(JSContext* cx, JSOp op, HandleObject obj, HandleId id, HandleValue rhs)
{
- if (obj->is<PlainObject>() || obj->is<JSFunction>()) {
- unsigned propAttrs = GetInitDataPropAttrs(op);
- return NativeDefineProperty(cx, obj.as<NativeObject>(), id, rhs, nullptr, nullptr,
- propAttrs);
- }
-
- MOZ_ASSERT(obj->as<UnboxedPlainObject>().layout().lookup(id));
- return PutProperty(cx, obj, id, rhs, false);
+ MOZ_ASSERT(obj->is<PlainObject>() || obj->is<JSFunction>());
+ unsigned propAttrs = GetInitDataPropAttrs(op);
+ return NativeDefineProperty(cx, obj.as<NativeObject>(), id, rhs,
+ nullptr, nullptr, propAttrs);
}
inline bool