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

Unified Diff: test/cctest/interpreter/test-interpreter.cc

Issue 1906823002: Move of the type feedback vector to the closure. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE. Created 4 years, 7 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
Index: test/cctest/interpreter/test-interpreter.cc
diff --git a/test/cctest/interpreter/test-interpreter.cc b/test/cctest/interpreter/test-interpreter.cc
index d0ebd5e6ca84efe4ea005004d3849808fd5964bb..b8db64b3bd3ad3d1e98f6b1870d4b9db6fe2bef4 100644
--- a/test/cctest/interpreter/test-interpreter.cc
+++ b/test/cctest/interpreter/test-interpreter.cc
@@ -4159,8 +4159,7 @@ TEST(InterpreterGenerators) {
};
for (size_t i = 0; i < arraysize(tests); i++) {
- std::string source(
- InterpreterTester::SourceForBody(tests[i].first));
+ std::string source(InterpreterTester::SourceForBody(tests[i].first));
InterpreterTester tester(handles.main_isolate(), source.c_str());
auto callable = tester.GetCallable<>();
@@ -4171,7 +4170,6 @@ TEST(InterpreterGenerators) {
FLAG_ignition_generators = old_flag;
}
-
} // namespace interpreter
} // namespace internal
} // namespace v8

Powered by Google App Engine
This is Rietveld 408576698