Sets the element at the specified index. Not all node types support this operation. @param index the element index @param element the element to set @return the set element @throws GroovyBugError if this node type does not support setting
(int index, CSTNode element)
| 401 | * @throws GroovyBugError if this node type does not support setting |
| 402 | */ |
| 403 | public CSTNode set(int index, CSTNode element) { |
| 404 | throw new GroovyBugError("set() not supported for this CSTNode type"); |
| 405 | } |
| 406 | |
| 407 | /** |
| 408 | * Converts this node to a {@link Reduction}. |
no outgoing calls
no test coverage detected