Open
Description
For instance trying to revive from
@Foo.foo
class Foo {
static const foo = Deprecated('argument');
}
When we search for potential fields which define this argument, we only search the library that defines Deprecated
), and of course never find a field equal to our object.
If we could know to search the library defining Foo
we'd find it.