Bug 274729
| Summary: | Support using Ref for interfaces and buffer source types in IDL unions | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | Sam Weinig <sam> |
| Component: | Bindings | Assignee: | Sam Weinig <sam> |
| Status: | NEW | ||
| Severity: | Normal | CC: | cdumez, webkit-bug-importer |
| Priority: | P2 | Keywords: | InRadar |
| Version: | Other | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Bug Depends on: | 306967, 306966 | ||
| Bug Blocks: | 274114 | ||
Sam Weinig
Part of 274114.
| Attachments | ||
|---|---|---|
| Add attachment proposed patch, testcase, etc. |
Sam Weinig
Pull request: https://github.com/WebKit/WebKit/pull/29126
Radar WebKit Bug Importer
<rdar://problem/129133440>
Sam Weinig
To do this, we really need to support Ref for interfaces in dictionaries first, as without that, a union in a dictionary like:
```
dictionary Foo {
required (Node or double) bar;
}
```
will still fail to compile.
That is being tracked in 305410. Blocking this on that.
Sam Weinig
Extending to also cover typed array wrappers in unions.