(left, content, right)
| 263 | } |
| 264 | |
| 265 | stylizeLine(left, content, right) { |
| 266 | left = this.wrapWithStyleColors('border', left); |
| 267 | right = this.wrapWithStyleColors('border', right); |
| 268 | if (this.y === 0) { |
| 269 | content = this.wrapWithStyleColors('head', content); |
| 270 | } |
| 271 | return left + content + right; |
| 272 | } |
| 273 | |
| 274 | /** |
| 275 | * Renders the bottom line of the cell. |
no test coverage detected