(Statement statement)
| 89 | } |
| 90 | |
| 91 | private void parseStateIn(Statement statement) throws ParserException { |
| 92 | |
| 93 | State state = new State(); |
| 94 | String description = tokens.get(index++); |
| 95 | |
| 96 | if (StateContext.hasEntity(description)) { |
| 97 | state.setContext(StateContext.getEntity(description)); |
| 98 | } else { |
| 99 | state.setSpace(Coordinates.getEntity(description)); |
| 100 | } |
| 101 | |
| 102 | parseParameter(state); |
| 103 | statement.setStateIn(state); |
| 104 | } |
| 105 | |
| 106 | private void parseParameter(State state) throws ParserException { |
| 107 | if (OPEN_PARENTHESIS.equals(lookaheadToken())) { |
no test coverage detected