(item itemType)
| 150 | } |
| 151 | |
| 152 | func isStep(item itemType) bool { |
| 153 | switch item { |
| 154 | case itemDot, itemDotDot, itemAt, itemAxe, itemStar, itemName: |
| 155 | return true |
| 156 | } |
| 157 | return false |
| 158 | } |
| 159 | |
| 160 | func checkItem(r *scanner, typ itemType) { |
| 161 | if r.typ != typ { |
no outgoing calls
no test coverage detected
searching dependent graphs…