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

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

Issue 2310103002: [Interpreter] Remove constant pool type in tests (Closed)
Patch Set: Remove warning for pool type Created 4 years, 3 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/bytecode_expectations/LookupSlot.golden
diff --git a/test/cctest/interpreter/bytecode_expectations/LookupSlot.golden b/test/cctest/interpreter/bytecode_expectations/LookupSlot.golden
index ed13d254ac7389f1bccd7b04a8c7e171a881afcf..7972ebac2b4c76fd32138c250364f57ee591e64a 100644
--- a/test/cctest/interpreter/bytecode_expectations/LookupSlot.golden
+++ b/test/cctest/interpreter/bytecode_expectations/LookupSlot.golden
@@ -3,7 +3,6 @@
#
---
-pool type: string
execute: yes
wrap: yes
@@ -45,9 +44,9 @@ bytecodes: [
/* 65 S> */ B(Return),
]
constant pool: [
- "eval",
- "var x = 10;",
- "x",
+ ONE_BYTE_INTERNALIZED_STRING_TYPE ["eval"],
+ ONE_BYTE_INTERNALIZED_STRING_TYPE ["var x = 10;"],
+ ONE_BYTE_INTERNALIZED_STRING_TYPE ["x"],
]
handlers: [
]
@@ -91,9 +90,9 @@ bytecodes: [
/* 72 S> */ B(Return),
]
constant pool: [
- "eval",
- "var x = 10;",
- "x",
+ ONE_BYTE_INTERNALIZED_STRING_TYPE ["eval"],
+ ONE_BYTE_INTERNALIZED_STRING_TYPE ["var x = 10;"],
+ ONE_BYTE_INTERNALIZED_STRING_TYPE ["x"],
]
handlers: [
]
@@ -137,9 +136,9 @@ bytecodes: [
/* 59 S> */ B(Return),
]
constant pool: [
- "x",
- "eval",
- "",
+ ONE_BYTE_INTERNALIZED_STRING_TYPE ["x"],
+ ONE_BYTE_INTERNALIZED_STRING_TYPE ["eval"],
+ ONE_BYTE_INTERNALIZED_STRING_TYPE [""],
]
handlers: [
]

Powered by Google App Engine
This is Rietveld 408576698