Index: test/cctest/interpreter/Typeof.golden |
diff --git a/test/cctest/interpreter/Typeof.golden b/test/cctest/interpreter/Typeof.golden |
new file mode 100644 |
index 0000000000000000000000000000000000000000..0563d986dde5ce6fa6726c745c8dab83fc246db9 |
--- /dev/null |
+++ b/test/cctest/interpreter/Typeof.golden |
@@ -0,0 +1,54 @@ |
+# |
+# 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(); |
+ f(); |
+" |
+frame size: 1 # in multiples of sizeof(void*) |
+parameter count: 1 |
+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(); |
+ f(); |
+" |
+frame size: 0 |
+parameter count: 1 |
+bytecodes: [ |
+ B(StackCheck), |
+ B(LdaGlobalInsideTypeof), U8(0), U8(1), |
+ B(TypeOf), |
+ B(Return), |
+] |
+constant pool: [ |
+ "x", |
+] |
+handlers: [ |
+] |
+ |