|
Prism Ruby parser
|
Functions related to nodes in the AST. More...


Go to the source code of this file.
Functions | |
| PRISM_EXPORTED_FUNCTION const char * | pm_node_type (pm_node_type_t node_type) |
| Returns a string representation of the given node type. | |
| PRISM_EXPORTED_FUNCTION void | pm_visit_node (const pm_node_t *node, bool(*visitor)(const pm_node_t *node, void *data), void *data) PRISM_NONNULL(1) |
| Visit each of the nodes in this subtree using the given visitor callback. | |
| PRISM_EXPORTED_FUNCTION void | pm_visit_child_nodes (const pm_node_t *node, bool(*visitor)(const pm_node_t *node, void *data), void *data) PRISM_NONNULL(1) |
| Visit the children of the given node with the given callback. | |
Functions related to nodes in the AST.
| PRISM_EXPORTED_FUNCTION const char * pm_node_type | ( | pm_node_type_t | node_type | ) |
Returns a string representation of the given node type.
| node_type | The node type to convert to a string. |
| PRISM_EXPORTED_FUNCTION void pm_visit_node | ( | const pm_node_t * | node, |
| bool(*)(const pm_node_t *node, void *data) | visitor, | ||
| void * | data | ||
| ) |
Visit each of the nodes in this subtree using the given visitor callback.
The callback function will be called for each node in the subtree. If it returns false, then that node's children will not be visited. If it returns true, then the children will be visited. The data parameter is treated as an opaque pointer and is passed to the visitor callback for consumers to use as they see fit.
As an example:
| node | The root node to start visiting from. |
| visitor | The callback to call for each node in the subtree. |
| data | An opaque pointer that is passed to the visitor callback. |
| PRISM_EXPORTED_FUNCTION void pm_visit_child_nodes | ( | const pm_node_t * | node, |
| bool(*)(const pm_node_t *node, void *data) | visitor, | ||
| void * | data | ||
| ) |
Visit the children of the given node with the given callback.
This is the default behavior for walking the tree that is called from pm_visit_node if the callback returns true.
| node | The node to visit the children of. |
| visitor | The callback to call for each child node. |
| data | An opaque pointer that is passed to the visitor callback. |