class SyntaxTree::Index::FileComments::FileSource

be read we’ll read the file.
This represents the Ruby source in the form of a file. When it needs to

def initialize(filepath)

def initialize(filepath)
  @filepath = filepath
end

def source

def source
  File.read(filepath)
end