Index: test/cctest/interpreter/bytecode_expectations/Typeof.golden |
diff --git a/test/cctest/interpreter/bytecode_expectations/Typeof.golden b/test/cctest/interpreter/bytecode_expectations/Typeof.golden |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d919c8c553e5e39b2dd695b46ab87ccc63d21357 |
--- /dev/null |
+++ b/test/cctest/interpreter/bytecode_expectations/Typeof.golden |
@@ -0,0 +1,56 @@ |
+# |
+# Autogenerated by generate-bytecode-expectations |
+# |
+ |
+--- |
+pool type: string |
+execute: yes |
+wrap: no |
+test function name: f |
+ |
+--- |
+snippet: " |
+ function f() { |
+ var x = 13; |
+ return typeof(x); |
+ }; f(); |
rmcilroy
2016/02/24 08:55:35
remove extra f() on this line
Stefano Sanfilippo
2016/02/24 14:55:01
Done.
|
+ f(); |
+" |
+frame size: 1 |
+parameter count: 1 |
+bytecode array length: 7 |
+bytecodes: [ |
+ B(StackCheck), |
+ B(LdaSmi8), U8(13), |
+ B(Star), R(0), |
+ B(TypeOf), |
+ B(Return), |
+] |
+constant pool: [ |
+] |
+handlers: [ |
+] |
+ |
+--- |
+snippet: " |
+ var x = 13; |
+ function f() { |
+ return typeof(x); |
+ }; f(); |
rmcilroy
2016/02/24 08:55:35
ditto
Stefano Sanfilippo
2016/02/24 14:55:01
Done.
|
+ f(); |
+" |
+frame size: 0 |
+parameter count: 1 |
+bytecode array length: 6 |
+bytecodes: [ |
+ B(StackCheck), |
+ B(LdaGlobalInsideTypeof), U8(0), U8(1), |
+ B(TypeOf), |
+ B(Return), |
+] |
+constant pool: [ |
+ "x", |
+] |
+handlers: [ |
+] |
+ |