Home | History | Annotate | Download | only in SkV8Example

Lines Matching refs:TryCatch

33 void Global::reportException(v8::TryCatch* tryCatch) {
35 v8::String::Utf8Value exception(tryCatch->Exception());
37 v8::Handle<v8::Message> message = tryCatch->Message();
63 v8::String::Utf8Value stackTrace(tryCatch->StackTrace());
145 v8::TryCatch tryCatch;
161 SkASSERT(tryCatch.HasCaught());
163 gGlobal->reportException(&tryCatch);
165 SkASSERT(!tryCatch.HasCaught());
221 v8::TryCatch tryCatch;
229 this->reportException(&tryCatch);
238 SkASSERT(tryCatch.HasCaught());
240 this->reportException(&tryCatch);