- From: Boris Zbarsky <notifications@github.com>
- Date: Thu, 27 Jun 2019 10:18:41 -0700
- To: heycam/webidl <webidl@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Thursday, 27 June 2019 17:19:03 UTC
@Manishearth What is the exact usecase? Note that you can already write: ``` dictionary Foo { required bool thing;}; dictionary Bar { Foo foo; } ``` and this will do the right thing if you initialize `Bar` with an object with no `foo` property. The question is what should happen if someone explicitly initializes `Bar` with `{ foo: null } `, right? But why are people doing that, exactly? -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/heycam/webidl/issues/76#issuecomment-506435323
Received on Thursday, 27 June 2019 17:19:03 UTC