Changeset 752 for trunk/Decompiler.class.php
- Timestamp:
- 04/17/2011 06:06:50 AM (2 years ago)
- Files:
-
- 1 modified
-
trunk/Decompiler.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Decompiler.class.php
r751 r752 1569 1569 $this->dfunction($this->dc['function_table'][$op1['constant']], $EX['indent']); 1570 1570 break; 1571 case XC_DECLARE_LAMBDA_FUNCTION: 1571 case XC_DECLARE_LAMBDA_FUNCTION: // {{{ 1572 1572 ob_start(); 1573 1573 $this->dfunction($this->dc['function_table'][$op1['constant']], $EX['indent']); 1574 1574 $resvar = ob_get_clean(); 1575 1575 $istmpres = true; 1576 break; 1577 // }}} 1578 case XC_DECLARE_CONST: 1579 $resvar = 'const ' . unquoteName($this->getOpVal($op1, $EX), $EX) . ' = ' . str($this->getOpVal($op2, $EX)); 1576 1580 break; 1577 1581 case XC_DECLARE_FUNCTION_OR_CLASS:

