TypeScript/tests/cases/fourslash/quickInfoForTypeofParameter.ts

16 lines
383 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
/// <reference path='fourslash.ts'/>
////function foo() {
//// var y/*ref1*/1: string;
//// var x: typeof y/*ref2*/1;
////}
goTo.marker('ref2');
2014-09-30 22:51:47 +02:00
verify.quickInfoIs("(local var) y1: string", undefined);
2014-07-13 01:04:16 +02:00
goTo.marker('ref1');
2014-09-30 22:51:47 +02:00
verify.quickInfoIs("(local var) y1: string", undefined);
2014-07-13 01:04:16 +02:00
goTo.marker('ref2');
2014-09-30 22:51:47 +02:00
verify.quickInfoIs("(local var) y1: string", undefined);