ast.FunctionParameter
FunctionParameter is a derived class of ast.Node.
A function parameter is given to a function to pass arguments over to another function or to define possible parameters of functions in their declaration.
.type (tic.Type)
The type of the parameter.
.name (str)
Returns the name of the variable of this parameter. This is the given variable name in ast.FunctionCall nodes and the to-be variable name in function declarations.
.assigned_name (str)
The target variable of the given argument. This is used in ast.Unsafe declarations to pass the given variable to the internal variable inside of the unsafe block.