(e)
| 558 | this.options = e || w; |
| 559 | } |
| 560 | space(e) { |
| 561 | let t = this.rules.block.newline.exec(e); |
| 562 | if (t && t[0].length > 0) return { type: "space", raw: t[0] }; |
| 563 | } |
| 564 | code(e) { |
| 565 | let t = this.rules.block.code.exec(e); |
| 566 | if (t) { |
no outgoing calls
no test coverage detected