annotation_crawler 1.1.0 copy "annotation_crawler: ^1.1.0" to clipboard
annotation_crawler: ^1.1.0 copied to clipboard

outdated

Helps finding classes or methods with specific annotations.

Annotation Crawler #

Helps finding annotated declarations in a particular scope.

The main functions to use in this library are:

// Returns a List of AnnotatedDeclaration for each top level declaration that has Foo as annotation.
annotatedDeclarations(Foo);
// Does the same, but only for declarations in SomeClass
annotatedDeclarations(Foo, on: SomeClass);
// Returns a List of ClassMirror for each class that has Foo as annotation.
findClasses(Foo);
// Returns a List of MethodMirror for each method on SomeClass that has Foo as annotation.
findMethodsOnClass(SomeClass, Foo);
// Returns a List of MethodMirror for each method on someObject that has Foo as annotation.
findMethodsOnInstance(someObject, Foo);
0
likes
0
pub points
3%
popularity

Publisher

unverified uploader

Helps finding classes or methods with specific annotations.

Repository (GitLab)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on annotation_crawler