| 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..f7b0e3fe1d68d0127118cefce288f7d8c09fb950
|
| --- /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();
|
| +"
|
| +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();
|
| +"
|
| +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: [
|
| +]
|
| +
|
|
|