(w io.Writer)
| 8 | |
| 9 | func (Mux) typ() string { return "mux1" } |
| 10 | func (m *Mux) writeForHash(w io.Writer) { |
| 11 | mustWriteForHash(w, m.Sources) |
| 12 | mustWriteForHash(w, m.Program) |
| 13 | mustWriteForHash(w, m.ExtHash) |
| 14 | } |
| 15 | |
| 16 | // NewMux creates a new Mux. |
| 17 | func NewMux(sources []*ValueSource, program *Program) *Mux { |
nothing calls this directly
no test coverage detected