1// Code generated by "stringer -type state"; DO NOT EDIT.
2
3package template
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[stateText-0]
12	_ = x[stateTag-1]
13	_ = x[stateAttrName-2]
14	_ = x[stateAfterName-3]
15	_ = x[stateBeforeValue-4]
16	_ = x[stateHTMLCmt-5]
17	_ = x[stateRCDATA-6]
18	_ = x[stateAttr-7]
19	_ = x[stateURL-8]
20	_ = x[stateSrcset-9]
21	_ = x[stateJS-10]
22	_ = x[stateJSDqStr-11]
23	_ = x[stateJSSqStr-12]
24	_ = x[stateJSTmplLit-13]
25	_ = x[stateJSRegexp-14]
26	_ = x[stateJSBlockCmt-15]
27	_ = x[stateJSLineCmt-16]
28	_ = x[stateJSHTMLOpenCmt-17]
29	_ = x[stateJSHTMLCloseCmt-18]
30	_ = x[stateCSS-19]
31	_ = x[stateCSSDqStr-20]
32	_ = x[stateCSSSqStr-21]
33	_ = x[stateCSSDqURL-22]
34	_ = x[stateCSSSqURL-23]
35	_ = x[stateCSSURL-24]
36	_ = x[stateCSSBlockCmt-25]
37	_ = x[stateCSSLineCmt-26]
38	_ = x[stateError-27]
39	_ = x[stateDead-28]
40}
41
42const _state_name = "stateTextstateTagstateAttrNamestateAfterNamestateBeforeValuestateHTMLCmtstateRCDATAstateAttrstateURLstateSrcsetstateJSstateJSDqStrstateJSSqStrstateJSTmplLitstateJSRegexpstateJSBlockCmtstateJSLineCmtstateJSHTMLOpenCmtstateJSHTMLCloseCmtstateCSSstateCSSDqStrstateCSSSqStrstateCSSDqURLstateCSSSqURLstateCSSURLstateCSSBlockCmtstateCSSLineCmtstateErrorstateDead"
43
44var _state_index = [...]uint16{0, 9, 17, 30, 44, 60, 72, 83, 92, 100, 111, 118, 130, 142, 156, 169, 184, 198, 216, 235, 243, 256, 269, 282, 295, 306, 322, 337, 347, 356}
45
46func (i state) String() string {
47	if i >= state(len(_state_index)-1) {
48		return "state(" + strconv.FormatInt(int64(i), 10) + ")"
49	}
50	return _state_name[_state_index[i]:_state_index[i+1]]
51}
52