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
879 B
Go
32 lines
879 B
Go
// Code generated by "stringer -type=LexemeType"; DO NOT EDIT.
|
|
|
|
package markdown
|
|
|
|
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[LexError-0]
|
|
_ = x[LexEOF-1]
|
|
_ = x[LexIdent-2]
|
|
_ = x[LexOpenLink-3]
|
|
_ = x[LexCloseLink-4]
|
|
_ = x[LexHeading-5]
|
|
_ = x[LexBlockRef-6]
|
|
_ = x[LexAlias-7]
|
|
_ = x[LexText-8]
|
|
}
|
|
|
|
const _LexemeType_name = "LexErrorLexEOFLexIdentLexOpenLinkLexCloseLinkLexHeadingLexBlockRefLexAliasLexText"
|
|
|
|
var _LexemeType_index = [...]uint8{0, 8, 14, 22, 33, 45, 55, 66, 74, 81}
|
|
|
|
func (i LexemeType) String() string {
|
|
if i < 0 || i >= LexemeType(len(_LexemeType_index)-1) {
|
|
return "LexemeType(" + strconv.FormatInt(int64(i), 10) + ")"
|
|
}
|
|
return _LexemeType_name[_LexemeType_index[i]:_LexemeType_index[i+1]]
|
|
}
|