TypeScript/tests/cases/fourslash/parameterInfoOnParameterType.ts
2014-09-22 15:03:40 -07:00

11 lines
272 B
TypeScript

/// <reference path="fourslash.ts"/>
////function foo(a: string) { };
////var b = "test";
////foo("test"/*1*/);
////foo(b/*2*/);
goTo.marker("1");
verify.currentParameterHelpArgumentNameIs("a");
goTo.marker("2");
verify.currentParameterHelpArgumentNameIs("a");