You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
877 B
Go
32 lines
877 B
Go
// Code generated by "stringer -type=ItemType"; DO NOT EDIT.
|
|
|
|
package wikilink
|
|
|
|
import "strconv"
|
|
|
|
func _() {
|
|
// An "invalid array index" compiler error signifies that the constant values have changed.
|
|
// Re-run the stringer command to generate them again.
|
|
var x [1]struct{}
|
|
_ = x[ItemError-0]
|
|
_ = x[ItemEOF-1]
|
|
_ = x[ItemIdent-2]
|
|
_ = x[ItemOpenLink-3]
|
|
_ = x[ItemCloseLink-4]
|
|
_ = x[ItemHeading-5]
|
|
_ = x[ItemBlockRef-6]
|
|
_ = x[ItemAlias-7]
|
|
_ = x[ItemText-8]
|
|
}
|
|
|
|
const _ItemType_name = "ItemErrorItemEOFItemIdentItemOpenLinkItemCloseLinkItemHeadingItemBlockRefItemAliasItemText"
|
|
|
|
var _ItemType_index = [...]uint8{0, 9, 16, 25, 37, 50, 61, 73, 82, 90}
|
|
|
|
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]]
|
|
}
|