withMethodAnnotation<T> static method

Iterable<ArtifactTypeMirror> withMethodAnnotation<T>([
  1. Type? exactType
])

Implementation

static Iterable<ArtifactTypeMirror> withMethodAnnotation<T>([
  Type? exactType,
]) sync* {
  for (MapEntry<Type, $AClass> entry
      in ArtifactAccessor.withMethodAnnotation<T>(exactType)) {
    yield ArtifactTypeMirror(entry.value.classType, entry.value);
  }
}