Why can't we store a reference to `super`? It seems counterintuitive and prevents possible things like
```js
function metaStuff(sup) {
// do something else with super or with `this`
}
class Bar extends Foo {
constructor() {
let s = super
s()
metaStuff(s)
}
}
```
*/#!/*JoePea
_______________________________________________ es-discuss mailing list [email protected] https://mail.mozilla.org/listinfo/es-discuss

