(num int)
| 180 | } |
| 181 | |
| 182 | func newInt(num int) *IntNode { |
| 183 | return &IntNode{NodeType: NodeInt, Value: num} |
| 184 | } |
| 185 | |
| 186 | func (i *IntNode) String() string { |
| 187 | return fmt.Sprintf("%s: %d", i.Type(), i.Value) |
no outgoing calls
no test coverage detected