mirror of
https://github.com/danog/liquid.git
synced 2024-11-27 06:44:42 +01:00
17 lines
413 B
Go
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]]
|
|
}
|