Attaches input information to the specified element. @param elem element to which attributes will be added @param info input info (can be null)
(final FBuilder elem, final InputInfo info)
| 175 | * @param info input info (can be {@code null}) |
| 176 | */ |
| 177 | private void attach(final FBuilder elem, final InputInfo info) { |
| 178 | if(full) { |
| 179 | addAttribute(elem, LINE, info.line()); |
| 180 | addAttribute(elem, COLUMN, info.column()); |
| 181 | addAttribute(elem, PATH, info.path()); |
| 182 | } |
| 183 | } |
| 184 | } |
no test coverage detected