Returns a validation report for a module type.
(TypeElement module)
| 146 | |
| 147 | /** Returns a validation report for a module type. */ |
| 148 | ValidationReport<TypeElement> validate(TypeElement module) { |
| 149 | return reentrantComputeIfAbsent(cache, module, this::validateUncached); |
| 150 | } |
| 151 | |
| 152 | private ValidationReport<TypeElement> validateUncached(TypeElement module) { |
| 153 | ValidationReport.Builder<TypeElement> builder = ValidationReport.about(module); |
no test coverage detected