elvish/eval/type_string.go
Qi Xiao 9e40b129e1 Implement basic wildcard.
Implicit concat in compounds is much more strict now.
2016-02-07 20:39:03 +01:00

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]]
}