const regexp/syntax.OpEmptyMatch

16 uses

	regexp/syntax (current package)
		compile.go#L93: 	case OpEmptyMatch:
		parse.go#L358: 		return p.push(p.newRegexp(OpEmptyMatch))
		parse.go#L628: 		if i+1 < len(sub) && sub[i].Op == OpEmptyMatch && sub[i+1].Op == OpEmptyMatch {
		parse.go#L659: 		if sub.Op == OpEmptyMatch {
		parse.go#L664: 				re.Op = OpEmptyMatch
		parse.go#L681: 			re.Op = OpEmptyMatch
		parse.go#L690: 	if re.Op == OpEmptyMatch {
		parse.go#L695: 		if sub.Op == OpEmptyMatch {
		parse.go#L714: 			re.Op = OpEmptyMatch
		parse.go#L726: 	return p.newRegexp(OpEmptyMatch)
		regexp.go#L40: 	OpEmptyMatch                   // matches empty string
		regexp.go#L122: 	case OpEmptyMatch:
		regexp.go#L193: 		if re.Sub[0].Op != OpEmptyMatch {
		simplify.go#L45: 			return &Regexp{Op: OpEmptyMatch}
		simplify.go#L137: 	if sub.Op == OpEmptyMatch {