update error positions after rebase

This commit is contained in:
Mohamed Hegazy 2014-07-29 15:28:25 -07:00
parent f5091c226f
commit 990669972a
3 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@
////val<U>(f: (t: T) => U): Int<U>;
////}
////declare var v1: Int<string>;
////var /*1*/v2: Int<number> = v1/*2*/;
////var /*1*/v2/*2*/: Int<number> = v1;
goTo.eof();
verify.errorExistsBetweenMarkers("1", "2");

View File

@ -8,7 +8,7 @@
////
//// declare var v1: Int<string>;
////
//// var /*1*/v2: Int<number> = v1/*2*/;
//// var /*1*/v2/*2*/: Int<number> = v1;
verify.errorExistsBetweenMarkers("1", "2");
verify.numberOfErrorsInCurrentFile(1);

View File

@ -1,7 +1,7 @@
/// <reference path="fourslash.ts"/>
////function takesCallback(callback: (n) => any) { }
////takesCallback(function inner(n) { var /*1*/k: string = 10/*2*/; });
////takesCallback(function inner(n) { var /*1*/k/*2*/: string = 10; });
verify.errorExistsBetweenMarkers("1", "2");
verify.not.errorExistsBeforeMarker("1");