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)
| 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. |