Lines Matching refs:try_catch
67 v8::TryCatch try_catch; in DoLoop() local
82 CHECK(try_catch.HasCaught()); in DoLoop()
83 CHECK(try_catch.Exception()->IsNull()); in DoLoop()
84 CHECK(try_catch.Message().IsEmpty()); in DoLoop()
85 CHECK(!try_catch.CanContinue()); in DoLoop()
92 v8::TryCatch try_catch; in DoLoopNoCall() local
99 CHECK(try_catch.HasCaught()); in DoLoopNoCall()
100 CHECK(try_catch.Exception()->IsNull()); in DoLoopNoCall()
101 CHECK(try_catch.Message().IsEmpty()); in DoLoopNoCall()
102 CHECK(!try_catch.CanContinue()); in DoLoopNoCall()
280 v8::TryCatch try_catch; in LoopGetProperty() local
293 CHECK(try_catch.HasCaught()); in LoopGetProperty()
294 CHECK(try_catch.Exception()->IsNull()); in LoopGetProperty()
295 CHECK(try_catch.Message().IsEmpty()); in LoopGetProperty()
296 CHECK(!try_catch.CanContinue()); in LoopGetProperty()
329 v8::TryCatch try_catch; in ReenterAfterTermination() local
344 CHECK(try_catch.HasCaught()); in ReenterAfterTermination()
345 CHECK(try_catch.Exception()->IsNull()); in ReenterAfterTermination()
346 CHECK(try_catch.Message().IsEmpty()); in ReenterAfterTermination()
347 CHECK(!try_catch.CanContinue()); in ReenterAfterTermination()