MCPcopy Index your code
hub / github.com/apache/groovy / setMeaning

Method setMeaning

src/main/java/org/codehaus/groovy/syntax/Token.java:100–105  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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.

Callers 4

dupMethod · 0.95
newPlaceholderMethod · 0.95
makePrefixMethod · 0.45
makePostfixMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected