public function handleFailedConstant()

in src/HHClientFallbackHandler.hack [179:186]


  public function handleFailedConstant(string $name): void {
    $file = $this->lookupPath('constant', $name);
    if ($file === null) {
      return;
    }

    $this->requireFile($file);
  }