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

Unified Diff: test/cctest/interpreter/bytecode_expectations/Generators.golden

Issue 2007453002: [Interpreter] Make lazy compilation the default. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Disable tests failing with --turbo-from-bytecode 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
« no previous file with comments | « test/cctest/cctest.status ('k') | test/cctest/interpreter/test-bytecode-generator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/interpreter/bytecode_expectations/Generators.golden
diff --git a/test/cctest/interpreter/bytecode_expectations/Generators.golden b/test/cctest/interpreter/bytecode_expectations/Generators.golden
index 6e357376dedb29f72f3b2feebce9ca53cb901467..e337ef8979b590b1bb242d8036a5861e4b16a850 100644
--- a/test/cctest/interpreter/bytecode_expectations/Generators.golden
+++ b/test/cctest/interpreter/bytecode_expectations/Generators.golden
@@ -12,6 +12,7 @@ ignition generators: yes
---
snippet: "
function* f() { }
+ f();
"
frame size: 11
parameter count: 1
@@ -118,6 +119,7 @@ handlers: [
---
snippet: "
function* f() { yield 42 }
+ f();
"
frame size: 11
parameter count: 1
@@ -268,6 +270,7 @@ handlers: [
---
snippet: "
function* f() { for (let x of [42]) yield x }
+ f();
"
frame size: 17
parameter count: 1
« no previous file with comments | « test/cctest/cctest.status ('k') | test/cctest/interpreter/test-bytecode-generator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698