(t *Type)
| 171 | } |
| 172 | |
| 173 | func (c *Checker) TypeToString(t *Type) string { |
| 174 | return c.typeToString(t, nil) |
| 175 | } |
| 176 | |
| 177 | func (c *Checker) typeToString(t *Type, enclosingDeclaration *ast.Node) string { |
| 178 | return c.typeToStringEx(t, enclosingDeclaration, TypeFormatFlagsAllowUniqueESSymbolType|TypeFormatFlagsUseAliasDefinedOutsideCurrentScope, nil) |
no test coverage detected