Source code
Revision control
Copy as Markdown
Other Tools
export default function root() {
class Another {
bound = () => {
return this;
}
method() {
let two = 2;
console.log("pause here", Another, root);
}
}
new Another().method();
}