(sel ast.SelectExpr)
| 106 | } |
| 107 | |
| 108 | func (w *debugWriter) appendSelect(sel ast.SelectExpr) { |
| 109 | w.Buffer(sel.Operand()) |
| 110 | w.append(".") |
| 111 | w.append(sel.FieldName()) |
| 112 | if sel.IsTestOnly() { |
| 113 | w.append("~test-only~") |
| 114 | } |
| 115 | } |
| 116 | |
| 117 | func (w *debugWriter) appendCall(call ast.CallExpr) { |
| 118 | if call.IsMemberFunction() { |