(t *Type, enclosingDeclaration *ast.Node)
| 175 | } |
| 176 | |
| 177 | func (c *Checker) typeToString(t *Type, enclosingDeclaration *ast.Node) string { |
| 178 | return c.typeToStringEx(t, enclosingDeclaration, TypeFormatFlagsAllowUniqueESSymbolType|TypeFormatFlagsUseAliasDefinedOutsideCurrentScope, nil) |
| 179 | } |
| 180 | |
| 181 | func toNodeBuilderFlags(flags TypeFormatFlags) nodebuilder.Flags { |
| 182 | return nodebuilder.Flags(flags & TypeFormatFlagsNodeBuilderFlagsMask) |
no test coverage detected