Added label type
This commit is contained in:
parent
f4b0020c49
commit
14a867bc8b
32 changed files with 102 additions and 63 deletions
|
@ -1,11 +1,14 @@
|
|||
package eval
|
||||
|
||||
import "git.urbach.dev/cli/q/src/types"
|
||||
import (
|
||||
"git.urbach.dev/cli/q/src/asm"
|
||||
"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
|
||||
Label asm.Label
|
||||
}
|
||||
|
||||
func (v *Label) String() string {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue