Searched refs:hadException (Results 1 – 3 of 3) sorted by relevance
67 v8::Local<v8::Value> V8FunctionCall::call(bool& hadException, in call() argument73 hadException = tryCatch.HasCaught(); in call()
411 bool hadException = false; in wrapValue() local412 *result = function.call(hadException); in wrapValue()413 if (hadException || result->IsEmpty()) return Response::InternalError(); in wrapValue()428 bool hadException = false; in wrapTable() local429 v8::Local<v8::Value> r = function.call(hadException); in wrapTable()430 if (hadException || r.IsEmpty()) return nullptr; in wrapTable()503 bool hadException = false; in setCustomObjectFormatterEnabled() local504 function.call(hadException); in setCustomObjectFormatterEnabled()505 DCHECK(!hadException); in setCustomObjectFormatterEnabled()
52 v8::Local<v8::Value> call(bool& hadException, bool reportExceptions = true);