Lines Matching refs:startline
17 …this.startline = 0; // First starting line to be parsed after the preview response has bee…
26 add (type, handle, startline, endline, syntax=null) { argument
31 startline : this.startline + startline, property
32 endline : this.startline + endline,
47 var startline = 0;
49 startline = top.endline + 1;
50 this.startline = startline;
53 endline = bottom.startline-1;
56 this.removeMatches(startline, endline, true);
60 this.matcher.onAjax (top, bottom, startline, endline);
63 this.matches.sort((a, b) => (a.startline > b.startline) ? 1 : -1);
71 const top = editor.getLineRect(match.startline).top;
96 if (match.startline >= change.index.keeplast) {
98 match.startline += change.shift;
103 shift = editor.getLineRect(match.startline).top - match.scroll.top;
112 removeMatches(startline, endline, editor=false) { argument
115 if (!this.collides(match, startline, endline))
118 moaiEditor.editor.current.removeMatches(match.startline, match.endline);
123 if (match.startline >= start && match.startline <= end)
127 if (start >= match.startline && start <= match.endline)
129 if (end >= match.startline && end <= match.endline)
151 const top = editor.getLineRect(match.startline).top;
165 const top = editor.getLineRect(match.startline).top;