in src/core/Node.hack [496:502]
final public function getContext(string $key, mixed $default = null): mixed {
// You can't use ?? here, since the context may contain nulls.
if (C\contains_key($this->context, $key)) {
return $this->context[$key];
}
return $default;
}