(AstNode n)
| 393 | // Use with caution! Assumes n.getPosition() is -absolute-, which |
| 394 | // is only true before the node is added to its parent. |
| 395 | private static int getNodeEnd(AstNode n) { |
| 396 | return n.getPosition() + n.getLength(); |
| 397 | } |
| 398 | |
| 399 | private void recordComment(int lineno, int column, String comment) { |
| 400 | if (scannedComments == null) { |
no test coverage detected