()
| 229 | } |
| 230 | |
| 231 | get prefixes(): Reference[] { |
| 232 | const items = this.native.prefixes; |
| 233 | const count = items.count; |
| 234 | const result = []; |
| 235 | for (let i = 0; i < count; i++) { |
| 236 | result.push(Reference.fromNative(items.objectAtIndex(i))); |
| 237 | } |
| 238 | return result; |
| 239 | } |
| 240 | } |
| 241 | |
| 242 | export class Metadata implements IMetadata { |
nothing calls this directly
no test coverage detected