in src/Merger.hack [34:44]
private static function mergeImpl(
Traversable<KeyedTraversable<string, string>> $maps,
): dict<string, string> {
$out = dict[];
foreach ($maps as $map) {
foreach ($map as $def => $file) {
$out[$def] = $file;
}
}
return $out;
}