From 50183d8ae253a41e69450dca2ab8e296cbf37ccc Mon Sep 17 00:00:00 2001 From: andrey1s Date: Sun, 1 Nov 2020 11:28:40 +0300 Subject: [PATCH] remove unused input type --- input/type.go | 18 ------------------ input/type_string.go | 24 ------------------------ 2 files changed, 42 deletions(-) delete mode 100644 input/type.go delete mode 100644 input/type_string.go diff --git a/input/type.go b/input/type.go deleted file mode 100644 index 5ff68be..0000000 --- a/input/type.go +++ /dev/null @@ -1,18 +0,0 @@ -package input - -//go:generate stringer -type=Type -linecomment - -type Type int - -const ( - Argument Type = iota // argument - Option // option -) - -func (i Type) IsArgument() bool { - return i == Argument -} - -func (i Type) IsOption() bool { - return i == Option -} diff --git a/input/type_string.go b/input/type_string.go deleted file mode 100644 index 8dd3d69..0000000 --- a/input/type_string.go +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by "stringer -type=Type -linecomment"; DO NOT EDIT. - -package input - -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[Argument-0] - _ = x[Option-1] -} - -const _Type_name = "argumentoption" - -var _Type_index = [...]uint8{0, 8, 14} - -func (i Type) String() string { - if i < 0 || i >= Type(len(_Type_index)-1) { - return "Type(" + strconv.FormatInt(int64(i), 10) + ")" - } - return _Type_name[_Type_index[i]:_Type_index[i+1]] -}