* Directives[Const] : Directive[?Const]+
(isConst)
| 2379 | * Directives[Const] : Directive[?Const]+ |
| 2380 | */ |
| 2381 | parseDirectives(isConst) { |
| 2382 | const directives = []; |
| 2383 | while (this.peek(_tokenKind.TokenKind.AT)) { |
| 2384 | directives.push(this.parseDirective(isConst)); |
| 2385 | } |
| 2386 | return directives; |
| 2387 | } |
| 2388 | parseConstDirectives() { |
| 2389 | return this.parseDirectives(true); |
| 2390 | } |
no test coverage detected