function-assignment-in-arguments.js 158 B

12345
  1. test("overwriting this during function call still binds the original", () => {
  2. let tmp = new Map();
  3. // prettier-ignore
  4. tmp.set("", tmp = []);
  5. });