const regexp/syntax.OpCapture

10 uses

	regexp/syntax (current package)
		compile.go#L127: 	case OpCapture:
		parse.go#L1290: 		re2.Op = OpCapture
		regexp.go#L51: 	OpCapture                      // capturing subexpression with index Cap, optional name Name
		regexp.go#L107: 	case OpCapture:
		regexp.go#L185: 	case OpCapture:
		regexp.go#L198: 		if sub := re.Sub[0]; sub.Op > OpCapture || sub.Op == OpLiteral && len(sub.Rune) > 1 {
		regexp.go#L295: 	if re.Op == OpCapture {
		regexp.go#L314: 	if re.Op == OpCapture {
		simplify.go#L19: 	case OpCapture, OpConcat, OpAlternate:

	regexp
		regexp.go#L288: 	case syntax.OpCapture, syntax.OpPlus: