(stringID uint64)
| 1175 | } |
| 1176 | |
| 1177 | func (d *decoder) str(stringID uint64) string { |
| 1178 | if stringID == 0 { |
| 1179 | return "" |
| 1180 | } |
| 1181 | return d.content.Instances.Symbols[stringID-1] |
| 1182 | } |
| 1183 | |
| 1184 | func (d *decoder) switch_(switchID uint64) (out *semantic.Switch) { |
| 1185 | d.build(d.content.Instances.Switch, &d.inst.Switch, switchID, &out, |
no outgoing calls
no test coverage detected