public function getLastChildx()

in src/core/Node.hack [243:249]


  public function getLastChildx(): \XHPChild {
    $child = $this->getLastChild();
    if ($child is nonnull) {
      return $child;
    }
    invariant_violation('%s called on element with no children', __FUNCTION__);
  }