Environment
- Elixir version (elixir -v): 1.3.2
Current behavior
$ mix xref unreachable
lib/some.ex:10: Logger.unreachable/1
$ mix xref unreachable --no-compile
lib/some.ex:10: Logger.unreachable/1
lib/some.ex:11: AliasedModule.start_link/2
AliasedModule is reachable
Expected behavior
Aliases or any other information that was received on the latest compilation should not be ignored.
Or the --no-compile flag should be removed from shared options of xref command. See mix help xref