These string functions are purely for debugging
()
| 8 | // These string functions are purely for debugging |
| 9 | |
| 10 | func (a Alias) String() string { return fmt.Sprintf("Alias:%s", a.Name) } |
| 11 | func (k LiteralKeyword) String() string { return string(k) } |
| 12 | func (a ArrayLiteralType) String() string { |
| 13 | strs := []string{} |
no outgoing calls
no test coverage detected