docs: process
This commit is contained in:
@@ -18,9 +18,9 @@ type baseExpr struct {
|
||||
data any
|
||||
}
|
||||
|
||||
func (r baseExpr) Repr() string { return r.id }
|
||||
func (e baseExpr) Repr() string { return e.id }
|
||||
|
||||
func (r baseExpr) Data() any { return r.data }
|
||||
func (e baseExpr) Data() any { return e.data }
|
||||
|
||||
// NewExpr creates an Expr with the given representation name and data.
|
||||
func NewExpr(id string, data any) Expr { return baseExpr{id, data} }
|
||||
|
||||
Reference in New Issue
Block a user