()
| 196 | } |
| 197 | |
| 198 | get prefixes(): Reference[] { |
| 199 | const items = this.native.getPrefixes?.(); |
| 200 | const count = items.size(); |
| 201 | const result = []; |
| 202 | for (let i = 0; i < count; i++) { |
| 203 | result.push(Reference.fromNative(items.get(i))); |
| 204 | } |
| 205 | return result; |
| 206 | } |
| 207 | } |
| 208 | |
| 209 | export class Metadata implements IMetadata { |
nothing calls this directly
no test coverage detected