model

package
v1.1.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 5, 2018 License: Apache-2.0 Imports: 5 Imported by: 92

Documentation

Overview

Package model contains the data model necessary for generating mock implementations.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ArrayType

type ArrayType struct {
	Len  int // -1 for slices, >= 0 for arrays
	Type Type
}

ArrayType is an array or slice type.

func (*ArrayType) String

func (at *ArrayType) String(pm map[string]string, pkgOverride string) string

type ChanDir

type ChanDir int

ChanDir is a channel direction.

const (
	RecvDir ChanDir = 1
	SendDir ChanDir = 2
)

type ChanType

type ChanType struct {
	Dir  ChanDir // 0, 1 or 2
	Type Type
}

ChanType is a channel type.

func (*ChanType) String

func (ct *ChanType) String(pm map[string]string, pkgOverride string) string

type FuncType

type FuncType struct {
	In, Out  []*Parameter
	Variadic *Parameter // may be nil
}

FuncType is a function type.

func (*FuncType) String

func (ft *FuncType) String(pm map[string]string, pkgOverride string) string

type Interface

type Interface struct {
	Name    string
	Methods []*Method
}

Interface is a Go interface.

func InterfaceFromInterfaceType

func InterfaceFromInterfaceType(it reflect.Type) (*Interface, error)

func (*Interface) Print

func (intf *Interface) Print(w io.Writer)

type MapType

type MapType struct {
	Key, Value Type
}

MapType is a map type.

func (*MapType) String

func (mt *MapType) String(pm map[string]string, pkgOverride string) string

type Method

type Method struct {
	Name     string
	In, Out  []*Parameter
	Variadic *Parameter // may be nil
}

Method is a single method of an interface.

func (*Method) Print

func (m *Method) Print(w io.Writer)

type NamedType

type NamedType struct {
	Package string // may be empty
	Type    string // TODO: should this be typed Type?
}

NamedType is an exported type in a package.

func (*NamedType) String

func (nt *NamedType) String(pm map[string]string, pkgOverride string) string

type Package

type Package struct {
	Name       string
	Interfaces []*Interface
	DotImports []string
}

Package is a Go package. It may be a subset.

func (*Package) Imports

func (pkg *Package) Imports() map[string]bool

Imports returns the imports needed by the Package as a set of import paths.

func (*Package) Print

func (pkg *Package) Print(w io.Writer)

type Parameter

type Parameter struct {
	Name string // may be empty
	Type Type
}

Parameter is an argument or return parameter of a method.

func (*Parameter) Print

func (p *Parameter) Print(w io.Writer)

type PointerType

type PointerType struct {
	Type Type
}

PointerType is a pointer to another type.

func (*PointerType) String

func (pt *PointerType) String(pm map[string]string, pkgOverride string) string

type PredeclaredType

type PredeclaredType string

PredeclaredType is a predeclared type such as "int".

func (PredeclaredType) String

func (pt PredeclaredType) String(pm map[string]string, pkgOverride string) string

type Type

type Type interface {
	String(pm map[string]string, pkgOverride string) string
	// contains filtered or unexported methods
}

Type is a Go type.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL