TypeScript/tests/cases/fourslash/typedGenericPrototypeMember.ts
Cyrus Najmabadi eed6f0deca Use an output format for quickinfo that more closely matches the original source.
i.e. use  "var v: string" instead of "(var) v: string".

The parens case should only be used when we're using an english description instead of
an actual language construct.
2015-03-24 00:16:49 -07:00

13 lines
327 B
TypeScript

/// <reference path='fourslash.ts'/>
////class C<T> {
//// foo(x: T) { }
////}
////var /*1*/x = new C<any>(); // Quick Info for x is C<any>
////var /*2*/y = C.prototype; // Quick Info for y is C<{}>
goTo.marker('1');
verify.quickInfoIs('var x: C<any>');
goTo.marker('2');
verify.quickInfoIs('var y: C<any>');