GrammarComponent

public protocol GrammarComponent

Hosts the associated types Param amd Result which are needed throughout the grammar specification.

  • Each symbol has an input and an output parameter of this type associated with them.

    Declaration

    Swift

    associatedtype Param : Hashable
  • For a successful parse, optionally a result of this type is computed, as specified per ConstructResult.

    Declaration

    Swift

    associatedtype Result