(m *Mesh, uri string)
| 617 | } |
| 618 | |
| 619 | func getMeshSource(m *Mesh, uri string) *Source { |
| 620 | |
| 621 | id := strings.TrimPrefix(uri, "#") |
| 622 | for _, s := range m.Source { |
| 623 | if s.Id == id { |
| 624 | return s |
| 625 | } |
| 626 | } |
| 627 | return nil |
| 628 | } |
| 629 | |
| 630 | func getInputSemantic(inps []InputShared, semantic string) *InputShared { |
| 631 |
no outgoing calls
no test coverage detected