q/src/scope/Variable.go

8 lines
90 B
Go

package scope
// Variable is a named value.
type Variable struct {
Value
Name string
}