Sets the meaning (interpretation) for this token. Has no effect on the sentinel tokens (#EOF and #NULL). @param meaning the new meaning type from Types @return this token, for convenience chaining
(final int meaning)
| 98 | * @return this token, for convenience chaining |
| 99 | */ |
| 100 | @Override |
| 101 | public CSTNode setMeaning(final int meaning) { |
| 102 | if (this != EOF && this != NULL) |
| 103 | this.meaning = meaning; |
| 104 | return this; |
| 105 | } |
| 106 | |
| 107 | /** |
| 108 | * Returns the actual type of this token as determined by the lexer. |
no outgoing calls
no test coverage detected