summaryrefslogtreecommitdiffstats
path: root/js/src/vm
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@wolfbeast.com>2019-05-16 21:34:42 +0000
committerwolfbeast <mcwerewolf@wolfbeast.com>2019-05-16 21:34:42 +0000
commit201d8ee48926569fee200fbc9b4d506554869b5d (patch)
tree4b1b65914205517668df1cca2e9ea003b17fd67b /js/src/vm
parentfa8bfa1a00ca88dd0ff5f8dcfb89dee5fd01c639 (diff)
downloadUXP-201d8ee48926569fee200fbc9b4d506554869b5d.tar
UXP-201d8ee48926569fee200fbc9b4d506554869b5d.tar.gz
UXP-201d8ee48926569fee200fbc9b4d506554869b5d.tar.lz
UXP-201d8ee48926569fee200fbc9b4d506554869b5d.tar.xz
UXP-201d8ee48926569fee200fbc9b4d506554869b5d.zip
Remove Unboxed Objects from vm/ - Part 2
Diffstat (limited to 'js/src/vm')
-rw-r--r--js/src/vm/ReceiverGuard.cpp1
-rw-r--r--js/src/vm/ReceiverGuard.h5
2 files changed, 0 insertions, 6 deletions
diff --git a/js/src/vm/ReceiverGuard.cpp b/js/src/vm/ReceiverGuard.cpp
index 97df908c3..11c2d0727 100644
--- a/js/src/vm/ReceiverGuard.cpp
+++ b/js/src/vm/ReceiverGuard.cpp
@@ -7,7 +7,6 @@
#include "vm/ReceiverGuard.h"
#include "builtin/TypedObject.h"
-#include "vm/UnboxedObject.h"
#include "jsobjinlines.h"
using namespace js;
diff --git a/js/src/vm/ReceiverGuard.h b/js/src/vm/ReceiverGuard.h
index 459cc0012..c14f0d83b 100644
--- a/js/src/vm/ReceiverGuard.h
+++ b/js/src/vm/ReceiverGuard.h
@@ -28,11 +28,6 @@ namespace js {
// TypedObject: The structure of a typed object is determined by its group.
// All typed objects with the same group have the same class, prototype, and
// own properties.
-//
-// UnboxedPlainObject: The structure of an unboxed plain object is determined
-// by its group and its expando object's shape, if there is one. All unboxed
-// plain objects with the same group and expando shape have the same
-// properties except those stored in the expando's dense elements.
class HeapReceiverGuard;
class RootedReceiverGuard;