Index: src/heap/heap.h |
diff --git a/src/heap/heap.h b/src/heap/heap.h |
index 11ce656a2ef79810b74369c07ef3e3d3c35f8ae2..9531ad768834b7e5d93dd567019b2073b9e5a7a7 100644 |
--- a/src/heap/heap.h |
+++ b/src/heap/heap.h |
@@ -519,20 +519,6 @@ class Heap { |
static const double kMaxHeapGrowingFactorIdle; |
static const double kTargetMutatorUtilization; |
- // Sloppy mode arguments object size. |
- static const int kSloppyArgumentsObjectSize = |
- JSObject::kHeaderSize + 2 * kPointerSize; |
- |
- // Strict mode arguments has no callee so it is smaller. |
- static const int kStrictArgumentsObjectSize = |
- JSObject::kHeaderSize + 1 * kPointerSize; |
- |
- // Indicies for direct access into argument objects. |
- static const int kArgumentsLengthIndex = 0; |
- |
- // callee is only valid in sloppy mode. |
- static const int kArgumentsCalleeIndex = 1; |
- |
static const int kNoGCFlags = 0; |
static const int kReduceMemoryFootprintMask = 1; |
static const int kAbortIncrementalMarkingMask = 2; |