()
| 3665 | } |
| 3666 | |
| 3667 | function peg$parseReservedWord() { |
| 3668 | var s0; |
| 3669 | |
| 3670 | s0 = peg$parseKeyword(); |
| 3671 | if (s0 === peg$FAILED) { |
| 3672 | s0 = peg$parseFutureReservedWord(); |
| 3673 | if (s0 === peg$FAILED) { |
| 3674 | s0 = peg$parseNullLiteral(); |
| 3675 | if (s0 === peg$FAILED) { |
| 3676 | s0 = peg$parseBooleanLiteral(); |
| 3677 | } |
| 3678 | } |
| 3679 | } |
| 3680 | |
| 3681 | return s0; |
| 3682 | } |
| 3683 | |
| 3684 | function peg$parseKeyword() { |
| 3685 | var s0; |
no test coverage detected
searching dependent graphs…