| 13 | |
| 14 | |
| 15 | v8::Local<v8::Value> BooleanOperation::NewInstance(BOPAlgo_Operation op) |
| 16 | { |
| 17 | |
| 18 | v8::Local<v8::Object> instance = makeInstance(_template); |
| 19 | BooleanOperation* pThis = ObjectWrap::Unwrap<BooleanOperation>(instance); |
| 20 | return instance; |
| 21 | } |
| 22 | |
| 23 | |
| 24 | inline bool _isEqual(v8::Local<v8::String> a,const std::string txt) { |
nothing calls this directly
no test coverage detected