final protected static function checkIfLineIsTooLong()

in src/BaseCodeBuilder.hack [361:371]


  final protected static function checkIfLineIsTooLong(
    string $code,
    int $max_length,
  ): bool {
    foreach (Str\split($code, "\n") as $line) {
      if (Str\length($line) > $max_length) {
        return true;
      }
    }
    return false;
  }