class RubyIndexer::Entry::UnresolvedConstantAlias

possible to resolve the alias and it will remain an UnresolvedAlias until the right hand side constant exists
target in [Index#resolve]. If the right hand side contains a constant that doesn’t exist, then it’s not
All aliases are inserted as UnresolvedAlias in the index first and then we lazily resolve them to the correct
Before we have discovered ‘Foo`, there’s no way to eagerly resolve this alias to the correct target constant.
“‘
CONST = Foo
“`ruby
example, if we find
An UnresolvedAlias points to a constant alias with a right hand side that has not yet been resolved. For

def initialize(target, nesting, name, uri, location, comments) # rubocop:disable Metrics/ParameterLists

rubocop:disable Metrics/ParameterLists
: (String target, Array[String] nesting, String name, URI::Generic uri, Location location, String? comments) -> void
def initialize(target, nesting, name, uri, location, comments) # rubocop:disable Metrics/ParameterLists
  super(name, uri, location, comments)
  @target = target
  @nesting = nesting
end