Decompiler/dump: space between op
This commit is contained in:
parent
6e21470dc7
commit
3da52fc978
|
@ -2525,11 +2525,11 @@ class Decompiler
|
|||
if (substr($name, 0, 5) == 'ZEND_') {
|
||||
$name = substr($name, 5);
|
||||
}
|
||||
echo str_pad($name, 25);
|
||||
echo ' ', str_pad($name, 25);
|
||||
|
||||
$types = array('result' => 9, 'op1' => 20, 'op2' => 20);
|
||||
foreach ($types as $which => $len) {
|
||||
echo str_pad(($which == 'result' ? '>' : '') . $this->opToString($op[$which], $which, $EX), $len);
|
||||
echo ' ', str_pad(($which == 'result' ? '>' : '') . $this->opToString($op[$which], $which, $EX), $len);
|
||||
}
|
||||
echo "\t;", $op['extended_value'];
|
||||
if (isset($op['isCatchBegin'])) {
|
||||
|
|
Loading…
Reference in New Issue