(n node.Node)
| 1215 | } |
| 1216 | |
| 1217 | func (p *Printer) printInt(n node.Node) { |
| 1218 | nn := n.(*cast.Int) |
| 1219 | p.printFreeFloating(nn, freefloating.Start) |
| 1220 | |
| 1221 | p.printFreeFloating(nn, freefloating.Cast) |
| 1222 | if nn.GetFreeFloating().IsEmpty() { |
| 1223 | io.WriteString(p.w, "(integer)") |
| 1224 | } |
| 1225 | |
| 1226 | p.Print(nn.Expr) |
| 1227 | p.printFreeFloating(nn, freefloating.End) |
| 1228 | } |
| 1229 | |
| 1230 | func (p *Printer) printObject(n node.Node) { |
| 1231 | nn := n.(*cast.Object) |
no test coverage detected