-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support union arguments in new IDL #18564
Comments
Marked this as blocking #18364. |
Terry, is there anything further to do here? |
Unmarked this as blocking #18364. |
named item getters are not fully support in the dart:blink code however, dart:html never uses blink for these so it's not critical for 1.5. We should fix for completeness after the 36 roll. Removed Priority-Critical label. |
Removed this from the 1.6 milestone. |
Removed Oldschool-Milestone-1.6 label. |
Closed unions are generated as dynamic until Dart supports either union or function overloading. |
We're seeing syntax like the following in Blink IDL:
[ImplementedAs=namedGetter] getter (NodeList or Element) namedItem(DOMString name);
This requires C++ code that handles both types to be generated.
I'm modifying the template to throw for now when this case is encountered at runtime.
The text was updated successfully, but these errors were encountered: