class SourceMap::Map

def self.from_hash(hash)

def self.from_hash(hash)
  str     = hash['mappings']
  sources = hash['sources']
  names   = hash['names']
  mappings = decode_vlq_mappings(str, sources, names)
  new(mappings, hash['file'])
end