()
| 421 | } |
| 422 | |
| 423 | increaseNestingLevel() { |
| 424 | const block = this.getBlock() |
| 425 | if (!block) return |
| 426 | return this.setDocument(this.document.replaceBlock(block, block.increaseNestingLevel())) |
| 427 | } |
| 428 | |
| 429 | canDecreaseBlockAttributeLevel() { |
| 430 | return this.getBlock()?.getAttributeLevel() > 0 |
nothing calls this directly
no test coverage detected