All attributes of this class are read-only.
required
Is this parameter required (true) or optional (false)?
sigil
The effective sigil ('$', '@' or '%') of this parameter.
type_constraintsType: Parse::Method::Signatures::TypeConstraint
Predicate: has_type_constraints
Representation of the type constraint for this parameter. Most commonly you will just call
"meta_type_constraint" and not access this attribute directly.
default_valueType: Str
Predicate: has_default_value
A string that should be eval'd or injected to get the default value for this parameter. For example:
$name = 'bar'
Would give a default_value of "'bar'".
constraintsType: ArrayRef[Str]
Predicate: has_constraints
"where" constraints for this type. Each member of the array a the string (including enclosing braces) of
the where constraint block.
param_traitsType: ArrayRef[ Tupple[Str,Str] ]
Predicate: has_traits
Traits that this parameter is declared to have. For instance
$foo does coerce
would have a trait of
['does', 'coerce']