Index: src/full-codegen/full-codegen.h |
diff --git a/src/full-codegen/full-codegen.h b/src/full-codegen/full-codegen.h |
index 78304c4fab0230fbd569d57ff5d0267d80177371..389903347b695949393f1f7489de4b0f92a69465 100644 |
--- a/src/full-codegen/full-codegen.h |
+++ b/src/full-codegen/full-codegen.h |
@@ -551,7 +551,7 @@ class FullCodeGenerator: public AstVisitor { |
void EmitVariableLoad(VariableProxy* proxy, |
TypeofMode typeof_mode = NOT_INSIDE_TYPEOF); |
- void EmitAccessor(Expression* expression); |
+ void EmitAccessor(ObjectLiteralProperty* property); |
bool NeedsHoleCheckForLoad(VariableProxy* proxy); |
@@ -585,7 +585,7 @@ class FullCodeGenerator: public AstVisitor { |
// Adds the properties to the class (function) object and to its prototype. |
// Expects the class (function) in the accumulator. The class (function) is |
// in the accumulator after installing all the properties. |
- void EmitClassDefineProperties(ClassLiteral* lit, int* used_store_slots); |
+ void EmitClassDefineProperties(ClassLiteral* lit); |
// Pushes the property key as a Name on the stack. |
void EmitPropertyKey(ObjectLiteralProperty* property, BailoutId bailout_id); |
@@ -639,9 +639,11 @@ class FullCodeGenerator: public AstVisitor { |
// Adds the [[HomeObject]] to |initializer| if it is a FunctionLiteral. |
// The value of the initializer is expected to be at the top of the stack. |
// |offset| is the offset in the stack where the home object can be found. |
- void EmitSetHomeObjectIfNeeded( |
- Expression* initializer, int offset, |
- FeedbackVectorICSlot slot = FeedbackVectorICSlot::Invalid()); |
+ void EmitSetHomeObject(Expression* initializer, int offset, |
+ FeedbackVectorICSlot slot); |
+ |
+ void EmitSetHomeObjectAccumulator(Expression* initializer, int offset, |
+ FeedbackVectorICSlot slot); |
void EmitLoadSuperConstructor(SuperCallReference* super_call_ref); |