(source *ast.Node, target *ast.Node)
| 1875 | } |
| 1876 | |
| 1877 | func (c *Checker) isOrContainsMatchingReference(source *ast.Node, target *ast.Node) bool { |
| 1878 | return c.isMatchingReference(source, target) || c.containsMatchingReference(source, target) |
| 1879 | } |
| 1880 | |
| 1881 | // Return a new type in which occurrences of the string, number and bigint primitives and placeholder template |
| 1882 | // literal types in typeWithPrimitives have been replaced with occurrences of compatible and more specific types |
no test coverage detected