08:17
<Rob Palmer>

A reminder: The Interest Survey for the 100th TC39 meeting in February in San Diego is posted 🎉

Please add yourself by Tuesday 21st November.

16:44
<eemeli>
For those interested, I'm putting together an incubator call for the Stable Formatting proposal. See here for an agenda and a Doodle poll for figuring out the date & time: https://github.com/tc39/Reflector/issues/513
22:24
<bakkot>

from jmdyck:

Function(
  'a = console.log("oh"',
  '"no")',
  ''
)()
22:25
<bakkot>
this is very dumb, though I don't think it's an actual problem for anyone (in particular SES implements the spec as written, i.e., join with a comma and then validate as parameters)
22:26
<ptomato>
isn't that disallowed as described in the note in step 18 of https://tc39.es/ecma262/#sec-createdynamicfunction?
22:27
<ptomato>
oh, I guess the parameters as a whole are validated, not each parameter individually
22:27
<ptomato>
"oh no" indeed
22:28
<bakkot>
yup
22:28
<bakkot>
and people do rely on the ability to do Function('a, b', 'body') - combining multiple parameters into one argument, rather than putting each into their own argument