Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Unified Diff: test/cctest/test-func-name-inference.cc

Issue 6902203: Fix presubmit. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/test-func-name-inference.cc
diff --git a/test/cctest/test-func-name-inference.cc b/test/cctest/test-func-name-inference.cc
index 80f9bd189a06fe3cf4ad1b219f93ce00846c1222..e0d99ec139fd09338ff4ab2ffd0d5019c5aa7837 100644
--- a/test/cctest/test-func-name-inference.cc
+++ b/test/cctest/test-func-name-inference.cc
@@ -1,4 +1,4 @@
-// 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"
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698