()
| 114 | } |
| 115 | |
| 116 | decreaseNestingLevel() { |
| 117 | const attribute = this.getLastNestableAttribute() |
| 118 | if (attribute) { |
| 119 | return this.removeAttribute(attribute) |
| 120 | } else { |
| 121 | return this |
| 122 | } |
| 123 | } |
| 124 | |
| 125 | increaseNestingLevel() { |
| 126 | const attribute = this.getLastNestableAttribute() |
no test coverage detected