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.
6 lines
53 B
JavaScript
6 lines
53 B
JavaScript
foo = {
|
|
bar() {
|
|
return super.baz **= 12;
|
|
}
|
|
}
|