TypeScript/tests/cases/fourslash/completionListAfterFunction2.ts

14 lines
310 B
TypeScript
Raw Normal View History

2014-10-27 23:30:38 +01:00
/// <reference path='fourslash.ts' />
////// Outside the function expression
////declare var f1: (a: number) => void; /*1*/
////
////declare var f1: (b: number, b2: /*2*/) => void;
goTo.marker("1");
verify.not.completionListContains("a");
goTo.marker("2");
verify.completionListContains("b");