()
| 415 | } |
| 416 | |
| 417 | decreaseNestingLevel() { |
| 418 | const block = this.getBlock() |
| 419 | if (!block) return |
| 420 | return this.setDocument(this.document.replaceBlock(block, block.decreaseNestingLevel())) |
| 421 | } |
| 422 | |
| 423 | increaseNestingLevel() { |
| 424 | const block = this.getBlock() |
nothing calls this directly
no test coverage detected