| 274 | |
| 275 | |
| 276 | v8::Local<v8::Object> Edge::Clone() const |
| 277 | { |
| 278 | |
| 279 | Edge* obj = new Edge(); |
| 280 | v8::Local<v8::Object> instance = makeInstance(_template); |
| 281 | obj->Wrap(instance); |
| 282 | obj->setShape(this->shape()); |
| 283 | return instance; |
| 284 | } |
| 285 | |
| 286 | NAN_PROPERTY_GETTER(Edge::getter_firstVertex) { |
| 287 |
nothing calls this directly
no test coverage detected