(t *Type)
| 26410 | } |
| 26411 | |
| 26412 | func (c *Checker) isGenericStringLikeType(t *Type) bool { |
| 26413 | return t.flags&(TypeFlagsTemplateLiteral|TypeFlagsStringMapping) != 0 && !c.isPatternLiteralType(t) |
| 26414 | } |
| 26415 | |
| 26416 | func forEachType(t *Type, f func(t *Type)) { |
| 26417 | if t.flags&TypeFlagsUnion != 0 { |
no test coverage detected