Index: test/cctest/interpreter/bytecode_expectations/ThisFunction.golden |
diff --git a/test/cctest/interpreter/bytecode_expectations/ThisFunction.golden b/test/cctest/interpreter/bytecode_expectations/ThisFunction.golden |
index 5d1c7c914384fc5f55953d5e8160f69b9d4c567d..078adb0c6c6ab6ad96f7b429df8274b0cce4ba54 100644 |
--- a/test/cctest/interpreter/bytecode_expectations/ThisFunction.golden |
+++ b/test/cctest/interpreter/bytecode_expectations/ThisFunction.golden |
@@ -12,16 +12,19 @@ snippet: " |
f = function f() {}; |
f(); |
" |
-frame size: 1 |
+frame size: 2 |
parameter count: 1 |
-bytecode array length: 6 |
+bytecode array length: 10 |
bytecodes: [ |
/* 21 E> */ B(StackCheck), |
+ B(LdaConstant), U8(0), |
+ B(Star), R(1), |
B(Mov), R(closure), R(0), |
B(LdaUndefined), |
/* 25 S> */ B(Return), |
] |
constant pool: [ |
+ ONE_BYTE_INTERNALIZED_STRING_TYPE ["f"], |
] |
handlers: [ |
] |
@@ -32,16 +35,19 @@ snippet: " |
f = function f() { return f; }; |
f(); |
" |
-frame size: 1 |
+frame size: 2 |
parameter count: 1 |
-bytecode array length: 7 |
+bytecode array length: 11 |
bytecodes: [ |
/* 21 E> */ B(StackCheck), |
+ B(LdaConstant), U8(0), |
+ B(Star), R(1), |
B(Mov), R(closure), R(0), |
/* 26 S> */ B(Ldar), R(0), |
/* 36 S> */ B(Return), |
] |
constant pool: [ |
+ ONE_BYTE_INTERNALIZED_STRING_TYPE ["f"], |
] |
handlers: [ |
] |