docs: process

This commit is contained in:
2026-02-09 18:31:01 -05:00
parent 98b327103f
commit 4201225ce9
2 changed files with 12 additions and 8 deletions

View File

@@ -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} }