TypeScript/tests/cases/fourslash/quickInfoForFunctionDeclaration.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

18 lines
423 B
TypeScript

/// <reference path='fourslash.ts' />
////interface A<T> { }
////
////function ma/*makeA*/keA<T>(t: T): A<T> { return null; }
////
////function /*f*/f<T>(t: T) {
//// return makeA(t);
////}
////
////var x = f(0);
////var y = makeA(0);
goTo.marker("makeA");
verify.quickInfoIs("function makeA<T>(t: T): A<T>", undefined);
goTo.marker("f");
verify.quickInfoIs("function f<T>(t: T): A<T>", undefined);