const regexp/syntax.OpCapture

13 uses

	regexp/syntax (current package)
		compile.go#L127: 	case OpCapture:
		op_string.go#L23: 	_ = x[OpCapture-13]
		parse.go#L222: 	case OpCapture, OpStar:
		parse.go#L1434: 		re2.Op = OpCapture
		regexp.go#L52: 	OpCapture                      // capturing subexpression with index Cap, optional name Name
		regexp.go#L94: 	case OpCapture:
		regexp.go#L180: 	case OpCapture, OpStar, OpPlus, OpQuest, OpRepeat:
		regexp.go#L325: 	case OpCapture:
		regexp.go#L340: 		if sub.Op > OpCapture || sub.Op == OpLiteral && len(sub.Rune) > 1 {
		regexp.go#L439: 	if re.Op == OpCapture {
		regexp.go#L458: 	if re.Op == OpCapture {
		simplify.go#L19: 	case OpCapture, OpConcat, OpAlternate:

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