input.js 219 B

1234567891011121314
  1. function f() {
  2. g(async function() {
  3. c(() => this);
  4. });
  5. }
  6. (async function () {
  7. console.log('async wrapper:', this === 'foo')
  8. ;(() => {
  9. console.log('nested arrow:', this === 'foo')
  10. })()
  11. }).call('foo')