Index: /trunk/decompilesample.php
===================================================================
--- /trunk/decompilesample.php	(revision 751)
+++ /trunk/decompilesample.php	(revision 752)
@@ -276,6 +276,9 @@
 
 //* >= PHP 5.3
+echo 'PHP 5.3+ code testing';
+const CONST_VALUE = 1;
 echo $this::CONST_VALUE;
 echo $a::CONST_VALUE;
+echo CONST_VALUE;
 $this::__construct();
 $obj::__construct();
Index: /trunk/Decompiler.class.php
===================================================================
--- /trunk/Decompiler.class.php	(revision 751)
+++ /trunk/Decompiler.class.php	(revision 752)
@@ -1569,9 +1569,13 @@
 					$this->dfunction($this->dc['function_table'][$op1['constant']], $EX['indent']);
 					break;
-				case XC_DECLARE_LAMBDA_FUNCTION:
+				case XC_DECLARE_LAMBDA_FUNCTION: // {{{
 					ob_start();
 					$this->dfunction($this->dc['function_table'][$op1['constant']], $EX['indent']);
 					$resvar = ob_get_clean();
 					$istmpres = true;
+					break;
+					// }}}
+				case XC_DECLARE_CONST:
+					$resvar = 'const ' . unquoteName($this->getOpVal($op1, $EX), $EX) . ' = ' . str($this->getOpVal($op2, $EX));
 					break;
 				case XC_DECLARE_FUNCTION_OR_CLASS:
