Changeset 736 for trunk/Decompiler.class.php
- Timestamp:
- 2011-04-10T16:38:36+02:00 (2 years ago)
- File:
-
- 1 edited
-
trunk/Decompiler.class.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Decompiler.class.php
r735 r736 1558 1558 echo ', '; 1559 1559 } 1560 $arg = $EX['recvs'][$i + 1]; 1560 1561 if (isset($op_array['arg_info'])) { 1561 1562 $ai = $op_array['arg_info'][$i]; 1562 1563 if (!empty($ai['class_name'])) { 1563 1564 echo $ai['class_name'], ' '; 1564 if ( $ai['allow_null']) {1565 if (!ZEND_ENGINE_2_2 && $ai['allow_null']) { 1565 1566 echo 'or NULL '; 1566 1567 } … … 1568 1569 else if (!empty($ai['array_type_hint'])) { 1569 1570 echo 'array '; 1570 if ( $ai['allow_null']) {1571 if (!ZEND_ENGINE_2_2 && $ai['allow_null']) { 1571 1572 echo 'or NULL '; 1572 1573 } … … 1597 1598 } 1598 1599 } 1599 $arg = $EX['recvs'][$i + 1];1600 1600 echo toCode($arg[0], $indent); 1601 if (isset($arg[1])) {1602 echo ' = ', toCode($arg[1], $indent);1603 }1601 } 1602 if (isset($arg[1])) { 1603 echo ' = ', toCode($arg[1], $indent); 1604 1604 } 1605 1605 }
Note: See TracChangeset
for help on using the changeset viewer.

