-
-
Notifications
You must be signed in to change notification settings - Fork 51
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
[Proposal] Add unsafe convenience methods for JSValue #98
Conversation
Time Change: +195ms (2%) Total Time: 9,409.5ms
ℹ️ View Unchanged
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I love it, and I wasn't sure why we didn't have it this way from the start. I always thought there was something in how dynamicMember
works that prevented this from working.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I’m a little worried that it doesn’t have an unsafe
prefix — maybe we could have these return optionals instead?
This doesn’t hurt the usability very much and clarifies that you’re doing something unsafe:
let document = JSObject.global.document
let foundDivs = document.getElementsByTagName!("div")
The only thing I concerned about this change was overloads ambiguity, but it looks working well in Tokamak usage while my testing. |
Can we merge this? |
I got feedback that the current API to access JavaScript objects is redundant.
As he says, I agree that
method!(...)
and.object!
for every object access is very redundant. I think we can provide unsafe convenience methods with some assumptions.Before
After
What do you think about this proposal?