/// ////export class List { //// public next: List; //// public prev: List; //// public pushEntry(entry: List): void { //// entry./*1*/ //// } ////} const exact = ["next", "prev", "pushEntry"]; verify.completions({ marker: "1", exact }); edit.insert('next.'); verify.completions({ exact }); edit.insert('prev.'); verify.completions({ exact });