class AllocationStats::AllocationsProxy

def alias_paths(value = nil)

will return the @alias_paths.
AllocationStats object will be returned. If no value is passed in, this
If a value is passed in, @alias_paths will be set to this value, and the
def alias_paths(value = nil)
  # reader
  return @alias_paths if value.nil?
  # writer
  @alias_paths = value
  return self
end