Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
weswigham committed Apr 29, 2019
1 parent 4e96d98 commit b646f28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/compiler/checker.ts
Expand Up @@ -13250,14 +13250,14 @@ namespace ts {

function reportUnmeasurableMarkers(p: TypeParameter) {
if (outofbandVarianceMarkerHandler && (p === markerSuperType || p === markerSubType || p === markerOtherType)) {
outofbandVarianceMarkerHandler(/*onlyUnreliable*/false);
outofbandVarianceMarkerHandler(/*onlyUnreliable*/ false);
}
return p;
}

function reportUnreliableMarkers(p: TypeParameter) {
if (outofbandVarianceMarkerHandler && (p === markerSuperType || p === markerSubType || p === markerOtherType)) {
outofbandVarianceMarkerHandler(/*onlyUnreliable*/true);
outofbandVarianceMarkerHandler(/*onlyUnreliable*/ true);
}
return p;
}
Expand Down

0 comments on commit b646f28

Please sign in to comment.