mirror of
https://github.com/nodejs/node.git
synced 2025-08-20 01:15:51 +02:00

PR-URL: https://github.com/nodejs/node/pull/44741 Fixes: https://github.com/nodejs/node/issues/44650 Fixes: https://github.com/nodejs/node/issues/37472 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
84 lines
1.3 KiB
Text
84 lines
1.3 KiB
Text
#
|
|
# Autogenerated by generate-bytecode-expectations.
|
|
#
|
|
|
|
---
|
|
wrap: yes
|
|
|
|
---
|
|
snippet: "
|
|
return 1 ? 2 : 3;
|
|
"
|
|
frame size: 0
|
|
parameter count: 1
|
|
bytecode array length: 3
|
|
bytecodes: [
|
|
/* 34 S> */ B(LdaSmi), I8(2),
|
|
/* 51 S> */ B(Return),
|
|
]
|
|
constant pool: [
|
|
]
|
|
handlers: [
|
|
]
|
|
|
|
---
|
|
snippet: "
|
|
return 1 ? 2 ? 3 : 4 : 5;
|
|
"
|
|
frame size: 0
|
|
parameter count: 1
|
|
bytecode array length: 3
|
|
bytecodes: [
|
|
/* 34 S> */ B(LdaSmi), I8(3),
|
|
/* 59 S> */ B(Return),
|
|
]
|
|
constant pool: [
|
|
]
|
|
handlers: [
|
|
]
|
|
|
|
---
|
|
snippet: "
|
|
return 0 < 1 ? 2 : 3;
|
|
"
|
|
frame size: 1
|
|
parameter count: 1
|
|
bytecode array length: 16
|
|
bytecodes: [
|
|
/* 34 S> */ B(LdaZero),
|
|
B(Star0),
|
|
B(LdaSmi), I8(1),
|
|
/* 43 E> */ B(TestLessThan), R(0), U8(0),
|
|
B(JumpIfFalse), U8(6),
|
|
B(LdaSmi), I8(2),
|
|
B(Jump), U8(4),
|
|
B(LdaSmi), I8(3),
|
|
/* 55 S> */ B(Return),
|
|
]
|
|
constant pool: [
|
|
]
|
|
handlers: [
|
|
]
|
|
|
|
---
|
|
snippet: "
|
|
var x = 0;
|
|
return x ? 2 : 3;
|
|
"
|
|
frame size: 1
|
|
parameter count: 1
|
|
bytecode array length: 11
|
|
bytecodes: [
|
|
/* 42 S> */ B(LdaZero),
|
|
B(Star0),
|
|
/* 45 S> */ B(JumpIfToBooleanFalse), U8(6),
|
|
B(LdaSmi), I8(2),
|
|
B(Jump), U8(4),
|
|
B(LdaSmi), I8(3),
|
|
/* 62 S> */ B(Return),
|
|
]
|
|
constant pool: [
|
|
]
|
|
handlers: [
|
|
]
|
|
|