in source_gen/lib/src/library.dart [56:69]
Iterable<AnnotatedElement> annotatedWithExact(
TypeChecker checker, {
bool throwOnUnresolved = true,
}) sync* {
for (final element in allElements) {
final annotation = checker.firstAnnotationOfExact(
element,
throwOnUnresolved: throwOnUnresolved,
);
if (annotation != null) {
yield AnnotatedElement(ConstantReader(annotation), element);
}
}
}