Closed AgwaB closed 5 years ago
details:
@zeroFruit
If we have this function,
func A(a int, b int){ }
we can get function selector by A(int,int)
A(int,int)
but this method make as A(parameter : identifier : .... maybe?
I think below method has matter so plz modify!
func (p *ParameterLiteral) String() string { return fmt.Sprintf("Parameter : (Identifier: %s, Type: %s)", p.Identifier.String(), p.Type.String()) }
details:
@zeroFruit
If we have this function,
we can get function selector by
A(int,int)
but this method make as A(parameter : identifier : .... maybe?
I think below method has matter so plz modify!