Allen Wirfs-Brock (2013-08-10T00:37:34.000Z)
domenic at domenicdenicola.com (2013-08-19T04:57:39.693Z)
On Aug 9, 2013, at 4:21 PM, Brandon Benvie wrote: > But that doesn't work for: > > ```js > function foo({ a } = { a: MUST() }){} > ``` this would expressed as: ```js function foo( {a=MUST() }) {} ``` > ```js > foo({}); // doesn't throw > ``` then the above throws and so does ```js foo() ```