module Prism::Relocation

def self.filepath(value)

Create a new repository for the given filepath.
def self.filepath(value)
  Repository.new(SourceFilepath.new(value))
end

def self.string(value)

Create a new repository for the given string.
def self.string(value)
  Repository.new(SourceString.new(value))
end