Prototype Constructor
| 50 | |
| 51 | // Prototype Constructor |
| 52 | NAN_METHOD(QuickItem::New) { |
| 53 | |
| 54 | QuickItem *obj_wrap = new QuickItem(); |
| 55 | obj_wrap->Wrap(info.This()); |
| 56 | |
| 57 | info.GetReturnValue().Set(info.This()); |
| 58 | } |
| 59 | |
| 60 | // Method |
| 61 | NAN_METHOD(QuickItem::create) { |
nothing calls this directly
no test coverage detected