Last active
August 29, 2015 14:14
-
-
Save wycats/5af7c3a8da515cddb35a to your computer and use it in GitHub Desktop.
Proposal for Stage 0 of a contextual 'super()' operation in ES7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Parent extends Person { | |
constructor() { | |
super(arg1, arg2); | |
// desugars to | |
// InitializeThis(<activefunction>.__proto__.[[Construct]]([arg1, arg2], NewTarget); | |
} | |
someMethod() { | |
// these are equivalent | |
super(arg1, arg2); | |
super.someMethod(arg1, arg2); | |
} | |
get someProperty() { | |
// these are equivalent | |
super(); | |
super.someProperty; | |
} | |
set someProperty(val) { | |
// these are equivalent | |
super(val); | |
super.someProperty = val; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// [[HomeObject]] is Parent | |
class Parent extends Person { | |
constructor() { | |
super(arg1, arg2); | |
// desugars to | |
// InitializeThis(<activefunction>.__proto__.[[Construct]]([arg1, arg2], NewTarget); | |
} | |
someMethod() { | |
super(arg1, arg2); | |
// desugars to | |
// [[HomeObject]].[[Prototype]].[[Get]]("someMethod", this).[[Call]](this, arg1, arg2); | |
super.someMethod(arg1, arg2); | |
// desugars to (the same thing) | |
// [[HomeObject]].[[Prototype]].[[Get]]("someMethod", this).[[Call]](this, arg1, arg2); | |
} | |
get someProperty() { | |
super(); | |
// desugars to | |
// [[HomeObject]].[[Prototype]].[[Get]]("someProperty", this) | |
super.someProperty; | |
// desugars to (the same thing) | |
// [[HomeObject]].[[Prototype]].[[Get]]("someProperty", this) | |
} | |
set someProperty(val) { | |
super(val); | |
// desugars to | |
// [[HomeObject]].[[Prototype]].[[Get]]("someProperty", this) | |
super.someProperty = val; | |
// desugars to (the same thing) | |
// [[HomeObject]].[[Prototype]].[[Set]]("someProperty", val, this) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment