(s []*nodes.Node)
| 25 | } |
| 26 | |
| 27 | func stringSliceFromNodes(s []*nodes.Node) []string { |
| 28 | var items []string |
| 29 | for _, item := range s { |
| 30 | if n, ok := item.Node.(*nodes.Node_String_); ok { |
| 31 | items = append(items, n.String_.Sval) |
| 32 | } |
| 33 | } |
| 34 | return items |
| 35 | } |
| 36 | |
| 37 | type relation struct { |
| 38 | Catalog string |
no outgoing calls
no test coverage detected