(n node.Node)
| 1252 | } |
| 1253 | |
| 1254 | func (p *PrettyPrinter) printExprShortArray(n node.Node) { |
| 1255 | nn := n.(*expr.ShortArray) |
| 1256 | |
| 1257 | io.WriteString(p.w, "[") |
| 1258 | p.joinPrint(", ", nn.Items) |
| 1259 | io.WriteString(p.w, "]") |
| 1260 | } |
| 1261 | |
| 1262 | func (p *PrettyPrinter) printExprShortList(n node.Node) { |
| 1263 | nn := n.(*expr.ShortList) |