示例#1
0
文件: label.go 项目: mm0205/gcasl
// NewLabel retruns a new label.
func NewLabel() *Label {
	return &Label{
		Element: share.NewEmptyElement(),
	}
}
示例#2
0
文件: opcode.go 项目: mm0205/gcasl
// NewOpcode returns a new opcode.
func NewOpcode() *Opcode {
	return &Opcode{
		Element: share.NewEmptyElement(),
	}
}
示例#3
0
文件: comment.go 项目: mm0205/gcasl
// NewComment returns a new comment.
func NewComment() *Comment {
	return &Comment{
		Element: share.NewEmptyElement(),
	}
}