(n Node)
| 311 | } |
| 312 | |
| 313 | func toString(n Node) *StringNode { |
| 314 | switch a := n.(type) { |
| 315 | case *StringNode: |
| 316 | return a |
| 317 | } |
| 318 | return nil |
| 319 | } |
| 320 | |
| 321 | func toInteger(n Node) *IntegerNode { |
| 322 | switch a := n.(type) { |
no outgoing calls
no test coverage detected
searching dependent graphs…