Beispiel #1
0
// NewLabel retruns a new label.
func NewLabel() *Label {
	return &Label{
		Element: share.NewEmptyElement(),
	}
}
Beispiel #2
0
// NewOpcode returns a new opcode.
func NewOpcode() *Opcode {
	return &Opcode{
		Element: share.NewEmptyElement(),
	}
}
Beispiel #3
0
// NewComment returns a new comment.
func NewComment() *Comment {
	return &Comment{
		Element: share.NewEmptyElement(),
	}
}