annotation_crawler 1.1.1 copy "annotation_crawler: ^1.1.1" to clipboard
annotation_crawler: ^1.1.1 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
40
points
16
downloads

Publisher

unverified uploader

Weekly Downloads

Helps finding classes or methods with specific annotations.

Repository (GitLab)
View/report issues
Contributing

License

MIT (license)

More

Packages that depend on annotation_crawler