(r *scanner)
| 142 | } |
| 143 | |
| 144 | func isNodeType(r *scanner) bool { |
| 145 | switch r.name { |
| 146 | case "node", "text", "processing-instruction", "comment": |
| 147 | return r.prefix == "" |
| 148 | } |
| 149 | return false |
| 150 | } |
| 151 | |
| 152 | func isStep(item itemType) bool { |
| 153 | switch item { |
no outgoing calls
no test coverage detected
searching dependent graphs…