Open
Description
This is a usage / migration from NAN question. With NAN I used the following to determine the invoked property name:
NAN_GETTER(ClassName::Getters)
{
...
std::string propertyName = *Nan::Utf8String(property);
...
}
This helped me to reduce C++ boilerplate code for classes with many properties because I did not have to declare and define every single setter and getter method in C++.
Is this still possible?