DEBSOURCES
Skip Quicknav
sources / node-babel / 6.26.0%2Bdfsg-3 / packages / babel-plugin-transform-jscript / test / fixtures / jscript / arrow-function / exec.js
123456789
class MyClass { test() { const that = this; const func = () => this === that; return func(); } } assert(new MyClass().test());