Daniel Tschinder 2dcee25d37 Exclude super from being assign (#4642)
Assigning of super is not allowed `var ref = super;` This fix adds an exception into
the explode helper so that super stays untouched and does not get assigned.
2016-10-03 21:04:26 -04:00

6 lines
53 B
JavaScript

foo = {
bar() {
return super.baz **= 12;
}
}