1
0
Fork 0

Decompiler/dump: remove unused code used for phpdop

This commit is contained in:
Xuefer 2015-06-09 03:24:42 +08:00
parent c01538d0ba
commit f5ebb4cb24
1 changed files with 0 additions and 14 deletions

View File

@ -1582,20 +1582,6 @@ class Decompiler
return $EX;
}
// }}}
function &dump_op_array($op_array, $indent = '') // {{{
{
$op_array['opcodes'] = $this->fixOpCode($op_array['opcodes']);
$this->buildJmpInfo($op_array);
$EX = array();
$EX['op_array'] = &$op_array;
$EX['opcodes'] = &$op_array['opcodes'];
$EX['indent'] = $indent;
$range = array(0, count($EX['opcodes']) - 1, 'EX' => &$EX);
$this->dumpRange($range);
return $EX;
}
// }}}
function dasmBasicBlock($range) // {{{
{
$EX = &$range['EX'];