| 70 | |
| 71 | |
| 72 | v8::Local<v8::Object> Vertex::Clone() const |
| 73 | { |
| 74 | Vertex* obj = new Vertex(); |
| 75 | v8::Local<v8::Object> instance = makeInstance(_template); |
| 76 | obj->Wrap(instance); |
| 77 | obj->setShape(this->shape()); |
| 78 | return instance; |
| 79 | } |
| 80 | |
| 81 | void Vertex::InitNew(_NAN_METHOD_ARGS) |
| 82 | { |
nothing calls this directly
no test coverage detected