Line is a line in a text fragment.
| 155 | |
| 156 | // Line is a line in a text fragment. |
| 157 | type Line struct { |
| 158 | Op LineOp |
| 159 | Line string |
| 160 | } |
| 161 | |
| 162 | func (fl Line) String() string { |
| 163 | return fl.Op.String() + fl.Line |
nothing calls this directly
no outgoing calls
no test coverage detected