( binaryEntry: ScanMachoMeta )
| 290 | } |
| 291 | |
| 292 | classifyBinaryEntryArchitecture ( binaryEntry: ScanMachoMeta ) { |
| 293 | const armArchitecture = binaryEntry.architectures.find( architecture => { |
| 294 | if ( !isString( architecture.processorType ) ) return false |
| 295 | |
| 296 | return architecture.processorType.toLowerCase().includes( 'arm' ) |
| 297 | } ) |
| 298 | |
| 299 | return armArchitecture !== undefined |
| 300 | } |
| 301 | |
| 302 | matchesMachoExecutable ( entry: ScanFileEntry ) { |
| 303 | if ( entry.filename.split( '/' ).length > 4 ) return false |
no test coverage detected