Implemented Value interface
This commit is contained in:
17
src/eval/Label.go
Normal file
17
src/eval/Label.go
Normal file
@ -0,0 +1,17 @@
|
||||
package eval
|
||||
|
||||
import "git.urbach.dev/cli/q/src/types"
|
||||
|
||||
// Label is a named pointer to a code or data section.
|
||||
type Label struct {
|
||||
Typ types.Type
|
||||
Label string
|
||||
}
|
||||
|
||||
func (v Label) String() string {
|
||||
return "Label"
|
||||
}
|
||||
|
||||
func (v Label) Type() types.Type {
|
||||
return v.Typ
|
||||
}
|
Reference in New Issue
Block a user