Lines Matching defs:context
391 Local<Context> context = error_obj->GetIsolate()->GetCurrentContext();
393 if (!error_obj->GetOwnPropertyNames(context).ToLocal(&keys)) {
399 if (!keys->Get(context, i).ToLocal(&key) || !key->IsString()) {
404 if (!error_obj->Get(context, key).ToLocal(&value) ||
405 !value->ToString(context).ToLocal(&value_string)) {
418 Local<Context> context,
427 maybe_str = error.As<v8::Symbol>()->ToDetailString(context);
429 maybe_str = error->ToString(context);
432 context, FIXED_ONE_BYTE_STRING(isolate, "stack"));
461 // context is entered.
520 Local<Context> context = isolate->GetCurrentContext();
522 if (!ErrorToString(isolate, context, error).To(&ss)) {