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
{{ message }}
This repository was archived by the owner on Jul 25, 2019. It is now read-only.
If an interface is defined as following:
[Constructor(long val)]
interface MyClass {
attribute readonly long value;
};
will compile fail, the message is :no matching function for call to ‘MyClass::MyClass()’
The generated Nan wrapper code calls new MyClass() but the implementation doesn't have the definition.