Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Array ¶
type Array struct {
Data []interface{}
FlagsStruct
}
func (Array) GetFlags ¶
func (a Array) GetFlags() FlagsStruct
func (Array) SetFlags ¶
func (a Array) SetFlags(f FlagsStruct)
type FlagsStruct ¶
type FlagsStruct struct {
Traced bool // Object is being traced in the debugger
Immediate bool // Objects executed even when compiling
Executable bool // Object is executable
}
func (FlagsStruct) SetExecutable ¶
func (f FlagsStruct) SetExecutable(b bool) FlagsStruct
func (FlagsStruct) SetImmediate ¶
func (f FlagsStruct) SetImmediate(b bool) FlagsStruct
func (FlagsStruct) SetTraced ¶
func (f FlagsStruct) SetTraced(b bool) FlagsStruct
type HasFlags ¶
type HasFlags interface {
GetFlags() FlagsStruct
SetFlags(FlagsStruct)
}
Click to show internal directories.
Click to hide internal directories.