input.js 311 B

1234567891011121314151617
  1. async function s(x, ...args) {
  2. let t = async (y, a) => {
  3. let r = async (z, b, ...innerArgs) => {
  4. await z;
  5. console.log(this, innerArgs, arguments);
  6. return this.x;
  7. }
  8. await r();
  9. console.log(this, args, arguments);
  10. return this.g(r);
  11. }
  12. await t();
  13. return this.h(t);
  14. }