()
| 2165 | return this; |
| 2166 | } |
| 2167 | |
| 2168 | public FLine pop() { |
| 2169 | |
| 2170 | if (stateStack.size() == 0) |
| 2171 | throw new IllegalArgumentException("pop() too many times"); |
| 2172 | State s = stateStack.remove(stateStack.size() - 1); |
| 2173 | heading = heading.duplicate(); |
| 2174 | return moveTo(nodes.get(s.index).to); |
| 2175 | } |
| 2176 |