(n Node)
| 327 | } |
| 328 | |
| 329 | func toFloat(n Node) *FloatNode { |
| 330 | switch a := n.(type) { |
| 331 | case *FloatNode: |
| 332 | return a |
| 333 | } |
| 334 | return nil |
| 335 | } |
| 336 | |
| 337 | func toBool(n Node) *BoolNode { |
| 338 | switch a := n.(type) { |
no outgoing calls
no test coverage detected
searching dependent graphs…