| 261 | } |
| 262 | |
| 263 | v8::Local<v8::Value> ModuleSystem::CallModuleMethod( |
| 264 | const std::string& module_name, |
| 265 | const std::string& method_name) { |
| 266 | v8::HandleScope handle_scope(GetIsolate()); |
| 267 | v8::Handle<v8::Value> no_args; |
| 268 | return CallModuleMethod(module_name, method_name, 0, &no_args); |
| 269 | } |
| 270 | |
| 271 | v8::Local<v8::Value> ModuleSystem::CallModuleMethod( |
| 272 | const std::string& module_name, |
no test coverage detected