mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-13 01:47:51 +08:00
9e40b129e1
Implicit concat in compounds is much more strict now.
17 lines
393 B
Go
17 lines
393 B
Go
// generated by stringer -type=Type; DO NOT EDIT
|
|
|
|
package eval
|
|
|
|
import "fmt"
|
|
|
|
const _Type_name = "TInvalidTStringTErrorTBoolTListTMapTFnTRatTGlobPattern"
|
|
|
|
var _Type_index = [...]uint8{0, 8, 15, 21, 26, 31, 35, 38, 42, 54}
|
|
|
|
func (i Type) String() string {
|
|
if i < 0 || i+1 >= Type(len(_Type_index)) {
|
|
return fmt.Sprintf("Type(%d)", i)
|
|
}
|
|
return _Type_name[_Type_index[i]:_Type_index[i+1]]
|
|
}
|