1
0
mirror of https://github.com/danog/liquid.git synced 2024-11-27 06:34:45 +01:00
liquid/chunks/chunktype_string.go
2017-06-26 15:36:05 -04:00

17 lines
413 B
Go

// Code generated by "stringer -type=ChunkType"; DO NOT EDIT.
package chunks
import "fmt"
const _ChunkType_name = "TextChunkTypeTagChunkTypeObjChunkType"
var _ChunkType_index = [...]uint8{0, 13, 25, 37}
func (i ChunkType) String() string {
if i < 0 || i >= ChunkType(len(_ChunkType_index)-1) {
return fmt.Sprintf("ChunkType(%d)", i)
}
return _ChunkType_name[_ChunkType_index[i]:_ChunkType_index[i+1]]
}