You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, sorry for the long response.
I didn't write this passage in the readme, but it’s obvious here that these are limitations of the Javascript syntax.
But you can always find a suitable replacement.
But we need to consider a more specific example, usually instead of
obj(index) = value
use
obj[index] = value
or
obj(index).value = value
or
obj.set(index, value)
Hello,
First of all a big THANK YOU for this nodejs module! It is nice to see how modern and proven technology can go hand in hand.
You mentioned the "Function Setter" in your Readme Limitation settings. You mention it is a limitation of v8.
Can you elaborate a bit on this? Is there any way to circumvent this limitation or have you logged an issue on node-gyp?
I want to use an application automation (based on ActiveX) and its documentation regularly mentions the setting of function indices.
Thank you for the feedback!
The text was updated successfully, but these errors were encountered: