(remoteRef)
| 32 | } |
| 33 | |
| 34 | translateOne(remoteRef) { |
| 35 | let result = null |
| 36 | for (const rule of this.rules) { |
| 37 | const localRef = rule.translate(remoteRef) |
| 38 | if (localRef) { |
| 39 | result = localRef |
| 40 | } |
| 41 | } |
| 42 | return result |
| 43 | } |
| 44 | |
| 45 | localNamespaces() { |
| 46 | return this.rules |
no test coverage detected