Commit 30ef211f authored by ager@chromium.org's avatar ager@chromium.org

Fix presubmit.

TBR=mnaganov

BUG=
TEST=

Review URL: http://codereview.chromium.org/6902203

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@7738 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent cf239c4e
// Copyright 2007-2009 the V8 project authors. All rights reserved.
// Copyright 2011 the V8 project authors. All rights reserved.
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
......@@ -296,7 +296,7 @@ TEST(MultipleAssignments) {
TEST(PassedAsConstructorParameter) {
InitializeVM();
v8::HandleScope scope;
v8::Handle<v8::Script> script = Compile(
"function Foo() {}\n"
"var foo = new Foo(function() { return 1; })");
......@@ -307,7 +307,7 @@ TEST(PassedAsConstructorParameter) {
TEST(FactoryHashmap) {
InitializeVM();
v8::HandleScope scope;
v8::Handle<v8::Script> script = Compile(
"function createMyObj() {\n"
" var obj = {};\n"
......@@ -323,7 +323,7 @@ TEST(FactoryHashmap) {
TEST(FactoryHashmapVariable) {
InitializeVM();
v8::HandleScope scope;
v8::Handle<v8::Script> script = Compile(
"function createMyObj() {\n"
" var obj = {};\n"
......@@ -342,7 +342,7 @@ TEST(FactoryHashmapVariable) {
TEST(FactoryHashmapConditional) {
InitializeVM();
v8::HandleScope scope;
v8::Handle<v8::Script> script = Compile(
"function createMyObj() {\n"
" var obj = {};\n"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment