(n Node)
| 319 | } |
| 320 | |
| 321 | func toInteger(n Node) *IntegerNode { |
| 322 | switch a := n.(type) { |
| 323 | case *IntegerNode: |
| 324 | return a |
| 325 | } |
| 326 | return nil |
| 327 | } |
| 328 | |
| 329 | func toFloat(n Node) *FloatNode { |
| 330 | switch a := n.(type) { |
no outgoing calls
no test coverage detected
searching dependent graphs…