Lines Matching refs:start
47 start: r[0],
552 // TODO: instead of injecting the start/end at this point, just return
553 // the BODY of the regexp, along with the start/end portions suitable
554 // for binding the start/end in either a joined full-path makeRe context
558 // In part-matching mode, the start is:
568 // pattern, so start is:
585 // And, if the start is adjusted slightly, can do the same there:
592 // performance, so probably better to return both start options.
595 // and the start always gets applied.
601 // - better detect what kind of start is needed
612 // use the (?:^|/) style of start binding.
615 // - Since the start for a join is eg /(?!\.) and the start for a part
617 // or start or whatever) and prepend ^ or / at the Regexp construction.
661 const start = this.type === "!" ? "(?:(?!(?:" : "(?:";
685 final = start + body + close;
1021 /* c8 ignore start */
1415 // "/a/b" matches the start of "/*/b/*/d"