Index: src/compiler/ast-graph-builder.h |
diff --git a/src/compiler/ast-graph-builder.h b/src/compiler/ast-graph-builder.h |
index f5ad2620fc0c53c25762fc725ff4bb68c1069256..bd74fda634b67cfffe54b54bf7db81cabfaa62c2 100644 |
--- a/src/compiler/ast-graph-builder.h |
+++ b/src/compiler/ast-graph-builder.h |
@@ -253,6 +253,7 @@ class AstGraphBuilder : public AstVisitor { |
Node* BuildLocalScriptContext(Scope* scope); |
Node* BuildLocalBlockContext(Scope* scope); |
+ void BuildAccessor(Node* home_object, ObjectLiteralProperty* property); |
Michael Starzinger
2015/09/07 08:31:13
nit: After addressing the comment about naming, th
mvstanton
2015/09/07 13:36:09
Done.
|
// Builder to create an arguments object if it is used. |
Node* BuildArgumentsObject(Variable* arguments); |
@@ -326,8 +327,9 @@ class AstGraphBuilder : public AstVisitor { |
// Builder for adding the [[HomeObject]] to a value if the value came from a |
// function literal and needs a home object. Do nothing otherwise. |
- Node* BuildSetHomeObject(Node* value, Node* home_object, Expression* expr, |
- const VectorSlotPair& feedback); |
+ Node* BuildSetHomeObject(Node* value, Node* home_object, |
+ ObjectLiteralProperty* property, |
+ int slot_number = 0); |
// Builders for error reporting at runtime. |
Node* BuildThrowError(Node* exception, BailoutId bailout_id); |