(type, include)
| 69679 | return oredFacts & 8256 /* TypeFacts.OrFactsMask */ | andedFacts & 16768959 /* TypeFacts.AndFactsMask */; |
| 69680 | } |
| 69681 | function getTypeWithFacts(type, include) { |
| 69682 | return filterType(type, function (t) { return (getTypeFacts(t) & include) !== 0; }); |
| 69683 | } |
| 69684 | function getTypeWithDefault(type, defaultExpression) { |
| 69685 | return defaultExpression ? |
| 69686 | getUnionType([getNonUndefinedType(type), getTypeOfExpression(defaultExpression)]) : |
no test coverage detected
searching dependent graphs…