(AstNode node)
| 4535 | |
| 4536 | // Return end of node. Assumes node does NOT have a parent yet. |
| 4537 | private static int nodeEnd(AstNode node) { |
| 4538 | return node.getPosition() + node.getLength(); |
| 4539 | } |
| 4540 | |
| 4541 | private void saveNameTokenData(int pos, String name, int lineno, int column) { |
| 4542 | prevNameTokenStart = pos; |
no test coverage detected