ABNFImportError

public enum ABNFImportError : Error

Errors specific to the import of ABNF grammars

  • The grammar contains a range expression with a lower bound higher than the upper bound

    Declaration

    Swift

    case invalidRange(line: Int, column: Int)
  • The grammar contains a charcode that is not a valid unicode scalar

    Declaration

    Swift

    case invalidCharcode(line: Int, column: Int)
  • The grammar contains a charcode range with a lower bound higher than the upper bound

    Declaration

    Swift

    case invalidCharacterRange(line: Int, column: Int)