Match the [ID] against a [Pattern] It checks if a given identifier matches the pattern. - "*" matches a single component - "**" matches zero or more components - "/" is the separator
(pattern Pattern)
| 136 | // - "**" matches zero or more components |
| 137 | // - "/" is the separator |
| 138 | Match(pattern Pattern) bool |
| 139 | } |
| 140 | |
| 141 | type id string |
no outgoing calls