Searched refs:hadException (Results 1 – 3 of 3) sorted by relevance
224 bool hadException = false; in wrapPropertyInArray() local225 function.call(hadException); in wrapPropertyInArray()226 return hadException ? Response::InternalError() : Response::OK(); in wrapPropertyInArray()239 bool hadException = false; in wrapValue() local240 *result = function.call(hadException); in wrapValue()241 if (hadException || result->IsEmpty()) return Response::InternalError(); in wrapValue()256 bool hadException = false; in wrapTable() local257 v8::Local<v8::Value> r = function.call(hadException); in wrapTable()258 if (hadException || r.IsEmpty()) return nullptr; in wrapTable()289 bool hadException = false; in setCustomObjectFormatterEnabled() local[all …]
67 v8::Local<v8::Value> V8FunctionCall::call(bool& hadException, in call() argument73 hadException = tryCatch.HasCaught(); in call()
52 v8::Local<v8::Value> call(bool& hadException, bool reportExceptions = true);