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