| 19 | } |
| 20 | |
| 21 | type stringWalker struct { |
| 22 | String string |
| 23 | IsConst bool |
| 24 | } |
| 25 | |
| 26 | func (s *stringWalker) Visit(node ast.Node) astutils.Visitor { |
| 27 | if _, ok := node.(*ast.A_Const); ok { |
nothing calls this directly
no outgoing calls
no test coverage detected