()
| 855 | } |
| 856 | |
| 857 | private Token peekToken() throws ParseException { |
| 858 | Token p = scanner.nextToken(); |
| 859 | if (p != null) { |
| 860 | scanner.pushback(p); |
| 861 | } |
| 862 | return p; |
| 863 | } |
| 864 | |
| 865 | private void listOfMapEntries(JMap ret) throws ParseException { |
| 866 | if (peekToken().type.equals(TokenType.RIGHT_CURLY)) { |
no test coverage detected