Re: [heycam/webidl] Specify open dictionaries. (#180)

@bzbarsky: agreed. If we're going with half-open down the road, we may want to converge towards a single model that can have 0.._n_ members and may be open-ended, e.g.:

```webidl
// opended, no members
dictionary CSSStyles {
  openended<DOMString, DOMString>;
}

// openended, some defined members
dictionary PaintOptions {
  DOMString? fillPattern = "black";
  DOMString? strokePattern = null;
  Point position;
  openended<DOMString, any>;
};
```

-- 
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/pull/180#issuecomment-252927811

Received on Tuesday, 11 October 2016 14:11:05 UTC