Index: src/full-codegen/full-codegen.h |
diff --git a/src/full-codegen/full-codegen.h b/src/full-codegen/full-codegen.h |
index 4be3815cb916f0fc6924a30de15586949a603ead..c6f3d18d415267b0ccf4f13847b24bb412b8a01e 100644 |
--- a/src/full-codegen/full-codegen.h |
+++ b/src/full-codegen/full-codegen.h |
@@ -393,9 +393,7 @@ class FullCodeGenerator final : public AstVisitor<FullCodeGenerator> { |
// Platform-specific code sequences for calls |
void EmitCall(Call* expr, ConvertReceiverMode = ConvertReceiverMode::kAny); |
void EmitCallWithLoadIC(Call* expr); |
- void EmitSuperCallWithLoadIC(Call* expr); |
void EmitKeyedCallWithLoadIC(Call* expr, Expression* key); |
- void EmitKeyedSuperCallWithLoadIC(Call* expr); |
#define FOR_EACH_FULL_CODE_INTRINSIC(F) \ |
F(IsSmi) \ |
@@ -452,14 +450,6 @@ class FullCodeGenerator final : public AstVisitor<FullCodeGenerator> { |
// The receiver is left on the stack by the IC. |
void EmitNamedPropertyLoad(Property* expr); |
- // Load a value from super.named property. |
- // Expect receiver ('this' value) and home_object on the stack. |
- void EmitNamedSuperPropertyLoad(Property* expr); |
- |
- // Load a value from super[keyed] property. |
- // Expect receiver ('this' value), home_object and key on the stack. |
- void EmitKeyedSuperPropertyLoad(Property* expr); |
- |
// Load a value from a keyed property. |
// The receiver and the key is left on the stack by the IC. |
void EmitKeyedPropertyLoad(Property* expr); |
@@ -497,14 +487,6 @@ class FullCodeGenerator final : public AstVisitor<FullCodeGenerator> { |
// 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 EmitNamedSuperPropertyStore(Property* prop); |
- |
- // Complete a super named property assignment. The right-hand-side value |
- // is expected in accumulator. |
- void EmitKeyedSuperPropertyStore(Property* prop); |
- |
// 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. |