Home
last modified time | relevance | path

Searched refs:hiltErrors (Results 1 – 1 of 1) sorted by relevance

/external/dagger2/java/dagger/hilt/processor/internal/
DProcessorErrorHandler.java44 private final List<HiltError> hiltErrors; field in ProcessorErrorHandler
49 this.hiltErrors = new ArrayList<>(); in ProcessorErrorHandler()
66 hiltErrors.add(HiltError.of(badInput.getMessage(), element)); in recordError()
70 hiltErrors.add(HiltError.of(badInput.getMessage(), badInput.getBadElement())); in recordError()
72 hiltErrors.add(HiltError.of(t.getMessage() + ": " + Throwables.getStackTraceAsString(t))); in recordError()
74 hiltErrors.add(HiltError.of(t.getClass() + ": " + Throwables.getStackTraceAsString(t))); in recordError()
80 if (!hiltErrors.isEmpty()) { in checkErrors()
81 hiltErrors.forEach( in checkErrors()
100 hiltErrors.clear(); in checkErrors()