You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A version of #602 for dictionary members. Consider:
dictionary Foo {
Bar bar;
};
dictionary Bar {};
Given we treat an empty dictionary as nothing-is-passed in arguments, one can expect the same for dictionary; not passing bar would be same as passing {}. But it's not always the case - e.g. in DisplayMediaStreamOptions.video not passing a value may also mean true, or in GPUBindGroupLayoutEntry not passing {} means disabling the feature.
Might want to do the same work as #620 so that such dictionary would set an explicit non-{} default value, and otherwise explicitly get {}.