$const->access_path = '\\'.
$class.'::'.
$name;
} $const =
$this->parser->
parse($val,
$const);
$consts[] =
$const;
} self::
$cache[$class] =
$consts;
} $statics =
new Representation('Static class properties', 'statics'
);
$statics->contents = self::
$cache[$class];
foreach ($reflection->
getProperties(ReflectionProperty::IS_STATIC
) as $static) { $prop =
new Value();
$prop->name = '$'.
$static->
getName();
$prop->depth =
$o->depth + 1;
$prop->static = true;
$prop->operator = Value::OPERATOR_STATIC;
$prop->owner_class =
$static->
getDeclaringClass()->name;
$prop->access = Value::ACCESS_PUBLIC;