Fixed tests.

This commit is contained in:
Daniel Rosenwasser 2015-07-15 16:05:49 -07:00
parent 5cd77167ec
commit 9233073d23
2 changed files with 7 additions and 6 deletions

View File

@ -8,8 +8,6 @@
////function f ({ [|next|]: { [|next|]: x} }: Recursive) {
////}
goTo.marker();
let ranges = test.ranges();
for (let range of ranges) {
goTo.position(range.start);

View File

@ -8,7 +8,10 @@
////function f ({ /*1*/next: { /*2*/next: x} }) {
////}
for (let { position } of test.markers()) {
goTo.position(position)
verify.quickInfoIs("(property) next: any");
}
goTo.marker("1");
verify.quickInfoIs(`(property) next: {
next: any;
}`);
goTo.marker("2");
verify.quickInfoIs("(property) next: any");