| 450 | #if NODE_MODULE_VERSION > NODE_0_10_MODULE_VERSION |
| 451 | inline HandleScope() : scope(v8::Isolate::GetCurrent()) {} |
| 452 | inline static int NumberOfHandles() { |
| 453 | return v8::HandleScope::NumberOfHandles(v8::Isolate::GetCurrent()); |
| 454 | } |
| 455 | #else |
| 456 | inline HandleScope() : scope() {} |
| 457 | inline static int NumberOfHandles() { |
nothing calls this directly
no outgoing calls
no test coverage detected