| Index: test/cctest/interpreter/bytecode_expectations/Throw.golden
|
| diff --git a/test/cctest/interpreter/bytecode_expectations/Throw.golden b/test/cctest/interpreter/bytecode_expectations/Throw.golden
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..abdbc53d7e0d16c909d71f463ec8031d6e308eb4
|
| --- /dev/null
|
| +++ b/test/cctest/interpreter/bytecode_expectations/Throw.golden
|
| @@ -0,0 +1,67 @@
|
| +#
|
| +# Autogenerated by generate-bytecode-expectations
|
| +#
|
| +
|
| +---
|
| +pool type: string
|
| +execute: yes
|
| +wrap: yes
|
| +
|
| +---
|
| +snippet: "
|
| + throw 1;
|
| +"
|
| +frame size: 0
|
| +parameter count: 1
|
| +bytecode array length: 4
|
| +bytecodes: [
|
| + B(StackCheck),
|
| + B(LdaSmi8), U8(1),
|
| + B(Throw),
|
| +]
|
| +constant pool: [
|
| +]
|
| +handlers: [
|
| +]
|
| +
|
| +---
|
| +snippet: "
|
| + throw 'Error';
|
| +"
|
| +frame size: 0
|
| +parameter count: 1
|
| +bytecode array length: 4
|
| +bytecodes: [
|
| + B(StackCheck),
|
| + B(LdaConstant), U8(0),
|
| + B(Throw),
|
| +]
|
| +constant pool: [
|
| + "Error",
|
| +]
|
| +handlers: [
|
| +]
|
| +
|
| +---
|
| +snippet: "
|
| + var a = 1; if (a) { throw 'Error'; };
|
| +"
|
| +frame size: 1
|
| +parameter count: 1
|
| +bytecode array length: 12
|
| +bytecodes: [
|
| + B(StackCheck),
|
| + B(LdaSmi8), U8(1),
|
| + B(Star), R(0),
|
| + B(JumpIfToBooleanFalse), U8(5),
|
| + B(LdaConstant), U8(0),
|
| + B(Throw),
|
| + B(LdaUndefined),
|
| + B(Return),
|
| +]
|
| +constant pool: [
|
| + "Error",
|
| +]
|
| +handlers: [
|
| +]
|
| +
|
|
|