(n node.Node)
| 981 | } |
| 982 | |
| 983 | func (p *PrettyPrinter) printExprArray(n node.Node) { |
| 984 | nn := n.(*expr.Array) |
| 985 | |
| 986 | io.WriteString(p.w, "array(") |
| 987 | p.joinPrint(", ", nn.Items) |
| 988 | io.WriteString(p.w, ")") |
| 989 | } |
| 990 | |
| 991 | func (p *PrettyPrinter) printExprBitwiseNot(n node.Node) { |
| 992 | nn := n.(*expr.BitwiseNot) |