TypeScript/tests/cases/fourslash/quickInfoForGenericPrototypeMember.ts

13 lines
303 B
TypeScript
Raw Normal View History

2014-10-06 21:29:49 +02:00
/// <reference path='fourslash.ts'/>
////class C<T> {
//// foo(x: T) { }
////}
////var x = new /*1*/C<any>();
////var y = C.proto/*2*/type;
goTo.marker('1');
verify.quickInfoIs('(constructor) C<any>(): C<any>');
goTo.marker('2');
verify.quickInfoIs('(property) C<T>.prototype: C<any>');