/plugins/JavaSideKick/tags/javasidekick-2-5-0/src/sidekick/java/parser/Token.java

# · Java · 94 lines · 27 code · 12 blank · 55 comment · 0 complexity · 04c60eae6e26a795200ba0ccb6cb4552 MD5 · raw file

  1. // Hand-modified for TigerParser, do not delete this file! Disregard any
  2. // warnings that javacc may say about this file being obsolete, it is not!
  3. // The modifications have to do with handling Generic Types, hence the
  4. // 'GTToken' defined below.
  5. package sidekick.java.parser;
  6. /**
  7. * Describes the input token stream.
  8. */
  9. public class Token {
  10. /**
  11. * An integer that describes the kind of this token. This numbering
  12. * system is determined by JavaCCParser, and a table of these numbers is
  13. * stored in the file ...Constants.java.
  14. */
  15. public int kind;
  16. /**
  17. * beginLine and beginColumn describe the position of the first character
  18. * of this token; endLine and endColumn describe the position of the
  19. * last character of this token.
  20. */
  21. public int beginLine, beginColumn, endLine, endColumn;
  22. /**
  23. * The string image of the token.
  24. */
  25. public String image;
  26. /**
  27. * A reference to the next regular (non-special) token from the input
  28. * stream. If this is the last token from the input stream, or if the
  29. * token manager has not read tokens beyond this one, this field is
  30. * set to null. This is true only if this token is also a regular
  31. * token. Otherwise, see below for a description of the contents of
  32. * this field.
  33. */
  34. public Token next;
  35. /**
  36. * This field is used to access special tokens that occur prior to this
  37. * token, but after the immediately preceding regular (non-special) token.
  38. * If there are no such special tokens, this field is set to null.
  39. * When there are more than one such special token, this field refers
  40. * to the last of these special tokens, which in turn refers to the next
  41. * previous special token through its specialToken field, and so on
  42. * until the first special token (whose specialToken field is null).
  43. * The next fields of special tokens refer to other special tokens that
  44. * immediately follow it (without an intervening regular token). If there
  45. * is no such token, this field is null.
  46. */
  47. public Token specialToken;
  48. /**
  49. * Returns the image.
  50. */
  51. public String toString()
  52. {
  53. return image;
  54. }
  55. /**
  56. * Returns a new Token object, by default. However, if you want, you
  57. * can create and return subclass objects based on the value of ofKind.
  58. * Simply add the cases to the switch for all those special cases.
  59. * For example, if you have a subclass of Token called IDToken that
  60. * you want to create if ofKind is ID, simlpy add something like :
  61. *
  62. * case MyParserConstants.ID : return new IDToken();
  63. *
  64. * to the following switch statement. Then you can cast matchedToken
  65. * variable to the appropriate type and use it in your lexical actions.
  66. */
  67. public static final Token newToken(int ofKind)
  68. {
  69. switch(ofKind)
  70. {
  71. default : return new Token();
  72. case TigerParserConstants.RUNSIGNEDSHIFT:
  73. case TigerParserConstants.RSIGNEDSHIFT:
  74. case TigerParserConstants.GT:
  75. return new GTToken();
  76. }
  77. }
  78. public static class GTToken extends Token
  79. {
  80. int realKind = TigerParserConstants.GT;
  81. }
  82. }