(types, type)
| 61112 | return type.id; |
| 61113 | } |
| 61114 | function containsType(types, type) { |
| 61115 | return ts.binarySearch(types, type, getTypeId, ts.compareValues) >= 0; |
| 61116 | } |
| 61117 | function insertType(types, type) { |
| 61118 | var index = ts.binarySearch(types, type, getTypeId, ts.compareValues); |
| 61119 | if (index < 0) { |
no outgoing calls
no test coverage detected