1// Code generated by "stringer -type=smpDirective -linecomment"; DO NOT EDIT.
2
3package merge2
4
5import "strconv"
6
7func _() {
8	// An "invalid array index" compiler error signifies that the constant values have changed.
9	// Re-run the stringer command to generate them again.
10	var x [1]struct{}
11	_ = x[smpUnknown-0]
12	_ = x[smpReplace-1]
13	_ = x[smpDelete-2]
14	_ = x[smpMerge-3]
15}
16
17const _smpDirective_name = "unknownreplacedeletemerge"
18
19var _smpDirective_index = [...]uint8{0, 7, 14, 20, 25}
20
21func (i smpDirective) String() string {
22	if i < 0 || i >= smpDirective(len(_smpDirective_index)-1) {
23		return "smpDirective(" + strconv.FormatInt(int64(i), 10) + ")"
24	}
25	return _smpDirective_name[_smpDirective_index[i]:_smpDirective_index[i+1]]
26}
27