annotation-go/definition.go
crusader 08db48ce48 ing
2018-08-23 15:13:22 +09:00

18 lines
326 B
Go

package annotation
import "reflect"
type Definition struct {
t reflect.Type
rt reflect.Type
}
type TypeDefinition struct {
t reflect.Type
rt reflect.Type
typeAnnotation map[reflect.Type]Annotation
fieldAnnotation map[string]map[reflect.Type]Annotation
methodAnnotation map[string]map[reflect.Type]Annotation
}