()
| 48 | // Format implements the NodeFormatter interface. |
| 49 | func (UnqualifiedStar) Format(ctx *FmtCtx) { ctx.WriteByte('*') } |
| 50 | func (u UnqualifiedStar) String() string { return AsString(u) } |
| 51 | |
| 52 | // NormalizeVarName implements the VarName interface. |
| 53 | func (u UnqualifiedStar) NormalizeVarName() (VarName, error) { return u, nil } |
nothing calls this directly
no test coverage detected