core

package
v1.0.9 Latest Latest
Warning

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

Go to latest
Published: Mar 28, 2024 License: MIT Imports: 2 Imported by: 5

Documentation

Index

Constants

View Source
const NUMBER = 118
View Source
const REVISION = "5ff39051a8c369774b3c6a17a6cccb3778153d8a+1"
View Source
const VERSION = "1.0.8"

Variables

This section is empty.

Functions

func ParseFuncName added in v1.0.8

func ParseFuncName(fullName string) (pkgPath string, recvName string, recvPtr bool, typeGeneric string, funcGeneric string, funcName string)

a/b/c.A a/b/c.(*C).X a/b/c.C.Y a/b/c.Z a/b/c.Z[].X a/b/c.X[]

Types

type Field

type Field interface {
	Name() string
	Value() interface{}
	Ptr() interface{}
	Set(val interface{})
}

type FuncInfo

type FuncInfo struct {
	// full name, format: {pkgPath}.{receiver}.{funcName}
	// example:  github.com/xhd2015/xgo/runtime/core.(*FuncInfo).IsFunc
	FullName     string
	Pkg          string
	IdentityName string
	Name         string
	RecvType     string
	RecvPtr      bool

	// is this an interface method?
	Interface bool

	// is this a generic function?
	Generic bool

	// is this a closure?
	Closure bool

	// source info
	File string
	Line int

	PC       uintptr     `json:"-"`
	Func     interface{} `json:"-"`
	RecvName string
	ArgNames []string
	ResNames []string

	// is first argument ctx
	FirstArgCtx bool
	// last last result error
	LastResultErr bool
}

func (*FuncInfo) DisplayName

func (c *FuncInfo) DisplayName() string

func (*FuncInfo) IsFunc

func (c *FuncInfo) IsFunc(fn interface{}) bool

type Object

type Object interface {
	GetField(name string) Field
	GetFieldIndex(i int) Field
	NumField() int
}

type ObjectWithErr added in v1.0.3

type ObjectWithErr interface {
	Object

	GetErr() Field
}

Jump to

Keyboard shortcuts

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