parser

Написать ответ на текущее сообщение

 

 
   команды управления поиском

Вдогонку...

AleXp 02.10.2005 22:26

общий метод:
@debugShowObject[object]
###################################################################################################
# Визуализация объектов
#
#    string
#    debugShowObject[
#        undefined object
#    ]
#
^if(!def $object){
        ^debugShowVoid[$object]
}{
        ^if($object is bool){^debugShowBool[$object]}
        ^if($object is string){^debugShowString[$object]}
        ^if($object is int || $object is double){^debugShowDouble[$object]}
        ^if($object is hash){^debugShowHash[$object]}

}
#end @debugShowObject[]