Index: src/full-codegen.h |
diff --git a/src/full-codegen.h b/src/full-codegen.h |
index 71e1b608e90e9de18041c74e2446ca69d7c04837..fdb329324a683bbae93695ff966f5e542c84b4a4 100644 |
--- a/src/full-codegen.h |
+++ b/src/full-codegen.h |
@@ -521,6 +521,8 @@ class FullCodeGenerator: public AstVisitor { |
// The receiver is left on the stack by the IC. |
void EmitNamedPropertyLoad(Property* expr); |
+ // Load a value from super.named prroperty. |
arv (Not doing code reviews)
2014/09/29 14:37:27
typo
|
+ // Expect receiver ('this' value) and home_object on the stack. |
void EmitNamedSuperPropertyLoad(Property* expr); |
// Load a value from a keyed property. |
@@ -558,6 +560,10 @@ class FullCodeGenerator: public AstVisitor { |
// of the stack and the right-hand-side value in the accumulator. |
void EmitNamedPropertyAssignment(Assignment* expr); |
+ // Complete a super named property assignment. The right-hand-side value |
+ // is expected in accumulator. |
+ void EmitNamedSuperPropertyAssignment(Assignment* expr); |
+ |
// Complete a keyed property assignment. The receiver and key are |
// expected on top of the stack and the right-hand-side value in the |
// accumulator. |