/
githubmirror
/
babel
Обзор
Документация
Войти
/
githubmirror
/
babel
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/babel-plugin-transform-classes/test/fixtures/spec/super-reference-before-in-lambda/exec.js
12 строк
132 B
Nicolò Ribaudo
`this` before `super()` is a runtime error, not a static one. (#6467)
06 дек 2017, 08:46
Не верифицирован
06 дек 2017, 08:46
509dbb7
Код
Авторство
О чём код?
class Bar { test() {} } class Foo extends Bar { constructor() { const t = () => super.test() super(); } } new Foo();