This commit is contained in:
Wesley Wigham
2018-10-22 14:37:27 -07:00
parent 1930f8a790
commit 34256145b8

View File

@@ -2043,7 +2043,8 @@ Actual: ${stringify(fullActual)}`);
private goToMarkerOrRange(markerOrRange: string | Range) {
if (typeof markerOrRange === "string") {
this.goToMarker(markerOrRange);
} else {
}
else {
this.goToRangeStart(markerOrRange);
}
}