(Node node, String format, Object... args)
| 482 | |
| 483 | // Formats and reports an error at the start of the specified node. |
| 484 | @FormatMethod |
| 485 | private void errorf(Node node, String format, Object... args) { |
| 486 | errorf(node.getStartLocation(), format, args); |
| 487 | } |
| 488 | |
| 489 | // Formats and reports an error at the specified location. |
| 490 | @FormatMethod |
no test coverage detected