| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
|
One may want to add, according to the most recent v8.h in node:
(I assume the plan is keeping the list more or less up to date with what V8 offers?) |
Sorry, something went wrong.
|
@addaleax thanks! Yes, the plan was to keep the list updated with what v8 offers. |
Sorry, something went wrong.
|
While I'm fine with this in general, I do have some concerns:
|
Sorry, something went wrong.
|
I'm in favor of exposing util.is* in a way that is in sync with what V8 offers. |
Sorry, something went wrong.
|
I really think we should just talk to people from TC39 about putting this in the language itself...? |
Sorry, something went wrong.
|
@Fishrock123 while I agree 100%, I would assume the timeline on that would be quite a bit longer than if we were to go this route for the time being. |
Sorry, something went wrong.
|
This would be cool. Getting it in the language would certainly be preferable. ... but I'd really like having it. |
Sorry, something went wrong.
Maybe it’s worth to ping @nodejs/chakracore? |
Sorry, something went wrong.
|
Putting such a proposal forward is not difficult. Convincing the commitee On Monday, September 26, 2016, Anna Henningsen notifications@github.com
|
Sorry, something went wrong.
Chakra would still need to shim out calls to Is*() methods, the way it does today. There won't be any change in shim layer by adding this in core. |
Sorry, something went wrong.
|
@jasnell same reasons as we use them? I'm not seeing why there's much difference. |
Sorry, something went wrong.
|
That doesn't always fly. For instance, there's extremely little reason why a browser developer would need isProxy(). The only reason we need to be able to determine if an object is a Proxy is in a very specific edge case when using util.inspect() to generate some debug output. We have to be able to articulate a clear benefit to adding these checks to the language vs. simply implementing them as part of the host environment and for most of these I'm not convinced the use case is quite compelling enough. |
Sorry, something went wrong.
|
That said, since I'm here this week anyway I'll ask :-) |
Sorry, something went wrong.
Then why would we want to publicly expose it ourselves? There is a reason there are deprecated in the docs. |
Sorry, something went wrong.
|
IsProxy is not exposed ;-) ... it's only used internally. Well, actually, not even that, there's an internal process.binding for getting the internals of a Proxy object because it's too slow to do an IsProxy first. Looking over the list, I'm certainly not convinced that there would be a definitive need to expose all of these Is* statements, although I'm ok with the basic idea in general. |
Sorry, something went wrong.
Yes, supporting a function like isNull() that literally only checks if a value === null is silly. That's not the case for checks that can't be reliably done in JS and require a C++ compiler though. |
Sorry, something went wrong.
|
Ok, here's an idea for a proposal to TC-39. There are already examples of similar types of methods (e.g. Array.isArray()). We can take these and do similar things with the other intrinsic types... e.g. Proxy.isProxy(), Symbol.isSymbol(), etc. I'll put it together and float it as a proposal to TC-39 in the near future. |
Sorry, something went wrong.
|
I agree with @jasnell . Proxy.isProxy() should come through TC-39 spec. When this API was introduced in util.inspect(), I tried various javascript ways to shim it but it was not possible to do it without native support. Currently it is still a TODO work item. in chakrashim. |
Sorry, something went wrong.
|
+1 to a proposal to TC-39. In the event that it is rejected, or takes a long time to play out, it is still useful for Node to provide this though. |
Sorry, something went wrong.
|
It's worth noting that TC39 isn't done adding new types so part of this proposal would also be to include similar "is" methods on all new types so we don't continue to see this going forward. |
Sorry, something went wrong.
|
Probably worth noting the TC39 hasn't yet outlined the bar to meet for new built-ins (it's on a todo), so it's a bit hit-n-miss for what sticks and what doesn't. |
Sorry, something went wrong.
|
@jdalton ... it definitely would be good to have those constraints but we can make do for the time being by just bringing the proposal in and seeing how it goes. |
Sorry, something went wrong.
|
@cjihrig ... for a TC-39 proposal to make progress we'd have to provide an implementation so doing something in parallel makes sense. We'd just need to be deliberate about how we introduce the APIs to make sure they match up with what is being proposed. |
Sorry, something went wrong.
|
Note that TC39 considered isProxy during the design of Proxies but intentionally chose not to include it to allow proxies “to hide their Proxy-ness” (see the notes for some small context). |
Sorry, something went wrong.
|
@disnet ... yes, I'm not convinced that Proxy.isProxy() is one that we'd really want to pursue in the proposal. I need to spend some time with this to pair the list down to ones that are particularly useful. |
Sorry, something went wrong.
|
At the very least an official list of built-in language types would be useful so as to decide what we should or shouldn't do in this potential space if it comes down to it. (May already exist) |
Sorry, something went wrong.
|
One use case I can think of for isProxy (and a lot of the others) is for formatting or logging |
Sorry, something went wrong.
|
Here is the start of a proposal for TC-39: https://github.com/jasnell/proposal-istypes |
Sorry, something went wrong.
| done via a native addon [(v8is)](https://github.com/evanlucas/v8is), it | ||
| requires that a compiler be installed on the consumer's machine. | ||
|
|
||
| We can expose these methods using currently by using `v8::Value`. |
There was a problem hiding this comment.
We can expose these methods currently by using v8::Value
Sorry, something went wrong.
|
I haven't seen any movement on this. @jasnell It looks like the TC39 proposal is still stage 0? 😕 |
Sorry, something went wrong.
|
Closing as this has been superseded by nodejs/node#18415 |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Description
This proposal is to add a builtin module that provides a way to determine
whether the passed argument is of a particular type. Although this can be
done via a native addon (v8is), it
requires that a compiler be installed on the consumer's machine.
We can expose these methods using currently by using v8::Value.
The util.is* functions are currently deprecated in the documentation. This
proposal will add an upgrade path to those currently using those functions.
Proof-of-concept
A proof-of-concept (does not include docs or a full test suite yet) can be found at:
https://github.com/evanlucas/node/tree/types
I know some have expressed interest in this and I wanted to extend a formal proposal for implementing.
/cc @cjihrig @jasnell @jdalton