Index: src/compiler/frame.h |
diff --git a/src/compiler/frame.h b/src/compiler/frame.h |
index 9764b261efc48383dc6a6964c906718f87453973..d375e5047b731d762157297936dfaf9782f38cb7 100644 |
--- a/src/compiler/frame.h |
+++ b/src/compiler/frame.h |
@@ -136,6 +136,9 @@ class Frame : public ZoneObject { |
return frame_slot_count_ - 1; |
} |
+ static const int kContextSlot = 2; |
+ static const int kJSFunctionSlot = 3; |
+ |
private: |
int AllocateAlignedFrameSlot(int width) { |
DCHECK(width == 4 || width == 8); |