(s string)
| 1432 | } |
| 1433 | |
| 1434 | func (e *encoder) str(s string) (outID uint64) { |
| 1435 | e.build(&e.instances.Symbols, e.maps.String, s, &outID, func() string { return s }) |
| 1436 | return |
| 1437 | } |
| 1438 | |
| 1439 | func (e *encoder) switch_(n *semantic.Switch) (outID uint64) { |
| 1440 | e.build(&e.instances.Switch, e.maps.Switch, n, &outID, func() *Switch { |
no test coverage detected