(type)
| 69110 | return !!(ts.getObjectFlags(type) & 128 /* ObjectFlags.ObjectLiteral */); |
| 69111 | } |
| 69112 | function isObjectOrArrayLiteralType(type) { |
| 69113 | return !!(ts.getObjectFlags(type) & (128 /* ObjectFlags.ObjectLiteral */ | 16384 /* ObjectFlags.ArrayLiteral */)); |
| 69114 | } |
| 69115 | function unionObjectAndArrayLiteralCandidates(candidates) { |
| 69116 | if (candidates.length > 1) { |
| 69117 | var objectLiterals = ts.filter(candidates, isObjectOrArrayLiteralType); |
no outgoing calls
no test coverage detected
searching dependent graphs…