/// ////class C { //// constructor(); //// constructor(x: number); //// constructor(y: string, x: number); //// constructor(a?: any, ...r: any[]) { //// if (a === undefined && r.length === 0) { //// return; //// } //// //// return; //// } ////} //// ////class D { //// [|con/**/structor|](public x: number, public y: number) { //// } ////} test.ranges().forEach(r => { goTo.position(r.start); test.ranges().forEach(range => { verify.occurrencesAtPositionContains(range, false); }); }); goTo.marker(); test.ranges().forEach(range => { verify.occurrencesAtPositionContains(range, false); });