TypeScript/tests/cases/fourslash/quickInfoInWithBlock.ts

16 lines
271 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
/// <reference path='fourslash.ts'/>
////with (x) {
//// function /*1*/f() { }
//// var /*2*/b = /*3*/f;
////}
goTo.marker('1');
verify.quickInfoIs("any");
2014-07-13 01:04:16 +02:00
goTo.marker('2');
verify.quickInfoIs("any");
2014-07-13 01:04:16 +02:00
goTo.marker('3');
verify.quickInfoIs("any");