Lines Matching refs:try_catch
241 v8::TryCatch try_catch; in RunMain() local
246 ReportException(&try_catch); in RunMain()
252 v8::TryCatch try_catch; in RunMain() local
255 if (try_catch.HasCaught()) { in RunMain()
257 ReportException(&try_catch); in RunMain()
308 v8::TryCatch try_catch; in RunCppCycle() local
311 if (try_catch.HasCaught()) { in RunCppCycle()
313 ReportException(&try_catch); in RunCppCycle()
360 void ReportException(v8::TryCatch* try_catch) { in ReportException() argument
362 v8::String::Utf8Value exception(try_catch->Exception()); in ReportException()
364 v8::Handle<v8::Message> message = try_catch->Message(); in ReportException()