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

Unified Diff: test/cctest/interpreter/bytecode_expectations/RegExpLiterals.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/RegExpLiterals.golden
diff --git a/test/cctest/interpreter/bytecode_expectations/RegExpLiterals.golden b/test/cctest/interpreter/bytecode_expectations/RegExpLiterals.golden
index 3637f782301ff6a9932c331bbdf5db089e808972..5273be11da49e169f7c556769a7b29e7d56e2953 100644
--- a/test/cctest/interpreter/bytecode_expectations/RegExpLiterals.golden
+++ b/test/cctest/interpreter/bytecode_expectations/RegExpLiterals.golden
@@ -3,7 +3,6 @@
#
---
-pool type: string
execute: yes
wrap: yes
@@ -20,7 +19,7 @@ bytecodes: [
/* 49 S> */ B(Return),
]
constant pool: [
- "ab+d",
+ ONE_BYTE_INTERNALIZED_STRING_TYPE ["ab+d"],
]
handlers: [
]
@@ -38,7 +37,7 @@ bytecodes: [
/* 58 S> */ B(Return),
]
constant pool: [
- "(\u005cw+)\u005cs(\u005cw+)",
+ ONE_BYTE_INTERNALIZED_STRING_TYPE ["(\u005cw+)\u005cs(\u005cw+)"],
]
handlers: [
]
@@ -61,9 +60,9 @@ bytecodes: [
/* 62 S> */ B(Return),
]
constant pool: [
- "ab+d",
- "exec",
- "abdd",
+ ONE_BYTE_INTERNALIZED_STRING_TYPE ["ab+d"],
+ ONE_BYTE_INTERNALIZED_STRING_TYPE ["exec"],
+ ONE_BYTE_INTERNALIZED_STRING_TYPE ["abdd"],
]
handlers: [
]

Powered by Google App Engine
This is Rietveld 408576698