-
-
Notifications
You must be signed in to change notification settings - Fork 30
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
Factor out IDL-to-ECMAScript type conversion #71
Comments
I've noticed that this section was not doing the right thing for I didn't factor it out though, nor am I aware that there's an actual algorithm defined somewhere (is this part of WebIDL?). |
TimothyGu
added a commit
to TimothyGu/webidl2js
that referenced
this issue
Mar 25, 2020
Implemented JS-to-IDL type conversion but not: - Saving callback context [1] - Call a user object's operation [2] - IDL-to-JS type conversion (jsdom#71) - Legacy callback interface object [3] Helps fix jsdom/jsdom#2869. [1]: https://heycam.github.io/webidl/#dfn-callback-context [2]: https://heycam.github.io/webidl/#call-a-user-objects-operation [3]: https://heycam.github.io/webidl/#dfn-legacy-callback-interface-object
TimothyGu
added a commit
that referenced
this issue
Mar 26, 2020
Implemented JS-to-IDL type conversion but not: - Saving callback context [1] - Call a user object's operation [2] - IDL-to-JS type conversion (#71) - Legacy callback interface object [3] Fixes jsdom/jsdom#2869. [1]: https://heycam.github.io/webidl/#dfn-callback-context [2]: https://heycam.github.io/webidl/#call-a-user-objects-operation [3]: https://heycam.github.io/webidl/#dfn-legacy-callback-interface-object
1 task
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We currently have an incomplete version of the actual algorithms:
webidl2js/lib/constructs/operation.js
Lines 88 to 98 in bf9954d
Would be nice to factor it out, for e.g. callback function support.
The text was updated successfully, but these errors were encountered: