in src/PartiallyGeneratedCode.hack [98:107]
private function extractManualCode(string $code): dict<string, string> {
$manual = dict[];
foreach ($this->iterateCodeSections($code) as $section) {
list($id, $chunk) = $section;
if ($id !== null) {
$manual[$id] = $chunk;
}
}
return $manual;
}