Children returns all children of a node. It supports ASTs before and after desugaring.
(node ast.Node)
| 8 | |
| 9 | // Children returns all children of a node. It supports ASTs before and after desugaring. |
| 10 | func Children(node ast.Node) []ast.Node { |
| 11 | return parser.Children(node) |
| 12 | } |