NAME
Variable::Declaration::Info - Information about variables
SYNOPSIS
use
Types::Standard -types;
let Str
$str
=
"message"
;
my
$info
= Variable::Declaration::info \
$str
;
$info
->type;
# Str
DESCRIPTION
Variable::Declaration::info returns objects of this class to describe variables. The following methods are available:
$info->type
type of variable
$info->attributes
attributes of variable
$info->declaration
variable is defined by this declaration