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

Method setMeaning

src/main/java/org/codehaus/groovy/syntax/CSTNode.java:61–64  ·  view source on GitHub ↗

Sets the semantic meaning (interpretation) of this node. The meaning may differ from the node's actual type and is often assigned during semantic analysis after parsing. @param meaning the new meaning type from Types @return this node for convenience chaining

(int meaning)

Source from the content-addressed store, hash-verified

59 * @return this node for convenience chaining
60 */
61 public CSTNode setMeaning(int meaning) {
62 getRoot().setMeaning(meaning);
63 return this;
64 }
65
66 /**
67 * Returns the actual syntactic type of this node as determined by the parser.

Callers

nothing calls this directly

Calls 1

getRootMethod · 0.95

Tested by

no test coverage detected