123456789101112131415161718192021222324252627 |
- // Code generated by "stringer -type=itemType,NodeType -trimprefix=item -output=config_string.go"; DO NOT EDIT.
- package jade
- import "strconv"
- const _itemType_name = "ErrorEOFEndLIdentEmptyLineTextCommentHTMLTagDoctypeDivTagTagInlineTagEndTagVoidTagVoidInlineIDClassAttrStartAttrEndAttrAttrSpaceAttrCommaAttrEqualAttrEqualUnFilterFilterTextIncludeExtendsBlockBlockAppendBlockPrependMixinMixinCallMixinBlockCodeCodeBufferedCodeUnescapedIfElseElseIfUnlessEachWhileForForIfNotContainForElseCaseCaseWhenCaseDefault"
- var _itemType_index = [...]uint16{0, 5, 8, 12, 17, 26, 30, 37, 44, 51, 54, 57, 66, 72, 79, 92, 94, 99, 108, 115, 119, 128, 137, 146, 157, 163, 173, 180, 187, 192, 203, 215, 220, 229, 239, 243, 255, 268, 270, 274, 280, 286, 290, 295, 298, 313, 320, 324, 332, 343}
- func (i itemType) String() string {
- if i < 0 || i >= itemType(len(_itemType_index)-1) {
- return "itemType(" + strconv.FormatInt(int64(i), 10) + ")"
- }
- return _itemType_name[_itemType_index[i]:_itemType_index[i+1]]
- }
- const _NodeType_name = "NodeTextNodeListNodeTagNodeCodeNodeCondNodeStringNodeDoctypeNodeMixinNodeBlock"
- var _NodeType_index = [...]uint8{0, 8, 16, 23, 31, 39, 49, 60, 69, 78}
- func (i NodeType) String() string {
- if i < 0 || i >= NodeType(len(_NodeType_index)-1) {
- return "NodeType(" + strconv.FormatInt(int64(i), 10) + ")"
- }
- return _NodeType_name[_NodeType_index[i]:_NodeType_index[i+1]]
- }
|