class Cucumber::Messages::Location

def self.from_h(hash)

def self.from_h(hash)
  return nil if hash.nil?
  self.new(
    line: hash[:line],
    column: hash[:column],
  )
end