| Index: tools/parser-shell.cc
|
| diff --git a/tools/parser-shell.cc b/tools/parser-shell.cc
|
| index 09210876be0af38a56aada7d7fba21eca38d4c1b..a774449876db491e7a6d2dfb9f0f0538f44b7520 100644
|
| --- a/tools/parser-shell.cc
|
| +++ b/tools/parser-shell.cc
|
| @@ -153,7 +153,7 @@ int main(int argc, char* argv[]) {
|
| v8::HandleScope handle_scope(isolate);
|
| v8::Handle<v8::ObjectTemplate> global = v8::ObjectTemplate::New(isolate);
|
| v8::Local<v8::Context> context = v8::Context::New(isolate, NULL, global);
|
| - ASSERT(!context.IsEmpty());
|
| + DCHECK(!context.IsEmpty());
|
| {
|
| v8::Context::Scope scope(context);
|
| double first_parse_total = 0;
|
|
|