(t *Type, enclosingDeclaration *ast.Node, flags TypeFormatFlags, vc *VerbosityContext)
| 183 | } |
| 184 | |
| 185 | func (c *Checker) TypeToStringEx(t *Type, enclosingDeclaration *ast.Node, flags TypeFormatFlags, vc *VerbosityContext) string { |
| 186 | return c.typeToStringEx(t, enclosingDeclaration, flags, vc) |
| 187 | } |
| 188 | |
| 189 | func (c *Checker) typeToStringEx(t *Type, enclosingDeclaration *ast.Node, flags TypeFormatFlags, vc *VerbosityContext) string { |
| 190 | // Serialization of types can lead to (lazy) resolution of members, which can cause diagnostics that again require |
no test coverage detected