FindIncludes recursively descend down a node looking for all Include identities
(node Node)
| 17 | |
| 18 | // FindIncludes recursively descend down a node looking for all Include identities |
| 19 | func FindIncludes(node Node) []string { |
| 20 | return findAllIncludes(node, nil) |
| 21 | } |
| 22 | |
| 23 | // InlineIncludes take an expression and resolve any includes so that |
| 24 | // the included expression is "Inline" |