Brian Donovan 5b4d6d7ba9 Replace superIdentifier with superProperty.
This also disallows the usage of bare `super` that is not part of a
member expression, call expression, or new expression.
2015-01-08 09:21:32 -08:00

6 lines
61 B
JavaScript

class Test {
constructor() {
console.log(super);
}
}