* Block Parser class * * @api private
()
| 3222 | */ |
| 3223 | |
| 3224 | function ParserBlock() { |
| 3225 | this.ruler = new Ruler(); |
| 3226 | for (var i = 0; i < _rules.length; i++) { |
| 3227 | this.ruler.push(_rules[i][0], _rules[i][1], { |
| 3228 | alt: (_rules[i][2] || []).slice() |
| 3229 | }); |
| 3230 | } |
| 3231 | } |
| 3232 | |
| 3233 | /** |
| 3234 | * Generate tokens for the given input range. |
nothing calls this directly
no outgoing calls
no test coverage detected