Index: /trunk/Decompiler.class.php
===================================================================
--- /trunk/Decompiler.class.php	(revision 722)
+++ /trunk/Decompiler.class.php	(revision 723)
@@ -55,5 +55,8 @@
 	}
 
-	if (is_array($value)) {
+	if ($value instanceof Decompiler_Object) {
+		// use as is
+	}
+	else if (is_array($value)) {
 		$value = new Decompiler_Array($value);
 	}
@@ -1320,4 +1323,5 @@
 					}
 					if (isset($op['cond_false'])) {
+						echo "TODO(cond_false):\n";
 						var_dump($op);// exit;
 					}
