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

Unified Diff: test/cctest/interpreter/bytecode_expectations/StringConstants.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/StringConstants.golden
diff --git a/test/cctest/interpreter/bytecode_expectations/StringConstants.golden b/test/cctest/interpreter/bytecode_expectations/StringConstants.golden
index c28ac2a8c91b701b813a29f4d8a2975b7827b4f4..7f765d2dc29d16b0890476edaa6cc9380069b519 100644
--- a/test/cctest/interpreter/bytecode_expectations/StringConstants.golden
+++ b/test/cctest/interpreter/bytecode_expectations/StringConstants.golden
@@ -3,7 +3,6 @@
#
---
-pool type: string
execute: yes
wrap: yes
@@ -20,7 +19,7 @@ bytecodes: [
/* 61 S> */ B(Return),
]
constant pool: [
- "This is a string",
+ ONE_BYTE_INTERNALIZED_STRING_TYPE ["This is a string"],
]
handlers: [
]
@@ -40,8 +39,8 @@ bytecodes: [
/* 82 S> */ B(Return),
]
constant pool: [
- "First string",
- "Second string",
+ ONE_BYTE_INTERNALIZED_STRING_TYPE ["First string"],
+ ONE_BYTE_INTERNALIZED_STRING_TYPE ["Second string"],
]
handlers: [
]
@@ -61,7 +60,7 @@ bytecodes: [
/* 79 S> */ B(Return),
]
constant pool: [
- "Same string",
+ ONE_BYTE_INTERNALIZED_STRING_TYPE ["Same string"],
]
handlers: [
]

Powered by Google App Engine
This is Rietveld 408576698