Interface DelpParserConstants

All Known Implementing Classes:
DelpParser, DelpParserTokenManager

public interface DelpParserConstants
This interface defines constants used by the `DelpParser` for token identification and lexical states. These constants are generated by JavaCC and represent the various tokens and lexical states used during parsing.

The interface includes both integer constants for token IDs and a corresponding array of literal token values for easier reference and debugging.

Note: This file is generated by JavaCC and should not be modified manually.

  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    Default lexical state.
    static final int
    End of File (EOF) token ID.
    static final int
    RegularExpression ID for a name token.
    static final int
    RegularExpression ID for a quoted string token.
    static final String[]
    Literal token values for easy reference.
  • Field Details

    • EOF

      static final int EOF
      End of File (EOF) token ID.
      See Also:
    • NAME

      static final int NAME
      RegularExpression ID for a name token.
      See Also:
    • QUOTED

      static final int QUOTED
      RegularExpression ID for a quoted string token.
      See Also:
    • DEFAULT

      static final int DEFAULT
      Default lexical state.
      See Also:
    • tokenImage

      static final String[] tokenImage
      Literal token values for easy reference.