Gets a representative for the instance field of the given name
, which must include the @
character.
This can be used to find cases where a class accesses the fields used by a base class.
class A < B
def m
@foo # API::getTopLevelMember("B").getInstance().getField("@foo")
end
end