Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
danog committed Dec 1, 2024
1 parent 6b9f365 commit 7c5a2ba
Show file tree
Hide file tree
Showing 15 changed files with 919,679 additions and 112,454 deletions.
8 changes: 4 additions & 4 deletions bin/normalize-callmap.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
$version = $matches[1];

$baseMaps[$version] = normalizeCallMap(require $file);
writeCallMap($file, $baseMaps[$version]);
}

ksort($baseMaps);
Expand Down Expand Up @@ -56,9 +57,8 @@
foreach ($data as $name => $func) {
if (($baseMaps[$version][$name] ?? null) === $func) {
unset($customMaps[$version][$name]);
} else if(($baseMaps[$version][$name] ?? null))
var_dump($name, ($baseMaps[$version][$name] ?? null), $func);
}
}
writeCallMap("dictionaries/CallMap_$version.php", array_replace($baseMaps[$version] ?? [], $data));
}

var_dump($customMaps);
writeCallMap("dictionaries/CallMap.php", array_replace($baseMaps[$last] ?? [], $customMaps[$last] ?? []));
Loading

0 comments on commit 7c5a2ba

Please sign in to comment.