Called by ExtendMethodCallback when extending a class
| 168 | |
| 169 | // Called by ExtendMethodCallback when extending a class |
| 170 | string CallbackHandlers::ResolveClassName(Isolate *isolate, jclass &clazz) { |
| 171 | auto runtime = Runtime::GetRuntime(isolate); |
| 172 | auto objectManager = runtime->GetObjectManager(); |
| 173 | auto className = objectManager->GetClassName(clazz); |
| 174 | return className; |
| 175 | } |
| 176 | |
| 177 | Local<Value> CallbackHandlers::GetArrayElement(Local<Context> context, const Local<Object> &array, |
| 178 | uint32_t index, const string &arraySignature) { |
nothing calls this directly
no test coverage detected