TypeScript/tests/cases/fourslash/quickInfoForTypeofParameter.ts
2014-09-30 17:10:27 -07:00

16 lines
383 B
TypeScript

/// <reference path='fourslash.ts'/>
////function foo() {
//// var y/*ref1*/1: string;
//// var x: typeof y/*ref2*/1;
////}
goTo.marker('ref2');
verify.quickInfoIs("(local var) y1: string", undefined);
goTo.marker('ref1');
verify.quickInfoIs("(local var) y1: string", undefined);
goTo.marker('ref2');
verify.quickInfoIs("(local var) y1: string", undefined);