Lines Matching full:context_2
6140 v8::Persistent<v8::Context> context_2;
6145 context_2 = v8::Context::New(NULL, global_template, global_object);
6149 CHECK(context_2->GetData()->IsUndefined());
6155 context_2->SetData(data_2);
6157 CHECK(context_2->GetData()->StrictEquals(data_2));
6174 v8::Context::Scope context_scope(context_2);
6175 expected_context = context_2;
6178 f->Call(context_2->Global(), 0, NULL);