| 76 | } |
| 77 | |
| 78 | v8::Local<v8::Object> Shell::Clone() const |
| 79 | { |
| 80 | Shell* obj = new Shell(); |
| 81 | v8::Local<v8::Object> instance = makeInstance(_template); |
| 82 | obj->Wrap(instance); |
| 83 | obj->setShape(this->shape()); |
| 84 | return instance; |
| 85 | } |
| 86 | |
| 87 | void Shell::Init(v8::Local<v8::Object> target) |
| 88 | { |
nothing calls this directly
no test coverage detected