David
David
 I've got a working prototype on my fork at https://github.com/dpwhittaker/ungit . I tried to go the plugin route but there were a few pieces of information I couldn't find...
I believe this is in reference to: One more issue I've identified. When there are more than 127 property accessors in the sytem, the native side starts looking for negative...
I am running this in a thread on the threadpool, and it only happens "later" after the V8 has been initialized, So I may be running it on a different...
This is what we came up with for multi-threading and debugging. Basically, node gets its own thread, and the node event loop becomes the message pump for Javascript code. We...
We are still running into some weird issues. When node is built in debug mode we get the error mentioned above. When it is not built in debug, the error...
Here is the stack trace from the error we're seeing: ``` # # Fatal error in C:\Projects\node-v8.4.0\deps\v8\src/api.h, line 349 # Check failed: allow_empty_handle || that != 0. # ==== C...
I agree with that summary statement. For now I just turned the List into a Dictionary. This ends up just using the last defined overload, which may or may not...
That code looks like it would do what we need, and it looks like you only take a performance hit when there are overloaded methods. We'll try to integrate it...