Fix golint errors

This commit is contained in:
Yuriy Taraday
2018-03-01 10:57:28 +04:00
parent 02e0818aef
commit 81923720d1
2 changed files with 6 additions and 8 deletions

View File

@@ -170,8 +170,10 @@ type Proc struct {
WriteStreamIdx int // The index of read stream in function argument list
}
// ProcMetaGenerate is a type for flags from @generate annotation
type ProcMetaGenerate int
// @generate annotation can be none, client, server or both
const (
ProcMetaGenerateNone ProcMetaGenerate = iota
ProcMetaGenerateClient
@@ -179,8 +181,10 @@ const (
ProcMetaGenerateBoth
)
// ProcMetaPriority is a type for values from @priority annotation
type ProcMetaPriority int
// @priority annotation can be low or high
const (
ProcMetaPriorityLow ProcMetaPriority = iota
ProcMetaPriorityHigh