( {
fileLoader,
messageReceiver
}: AppScanOptions )
| 154 | info: ScanInfo |
| 155 | |
| 156 | constructor ( { |
| 157 | fileLoader, |
| 158 | messageReceiver |
| 159 | }: AppScanOptions ) { |
| 160 | this.fileLoader = fileLoader |
| 161 | this.messageReceiver = messageReceiver |
| 162 | |
| 163 | this.status = 'idle' |
| 164 | this.file = null |
| 165 | this.bundleFileEntries = [] |
| 166 | this.infoPlist = {} |
| 167 | this.machoExcutables = [] |
| 168 | |
| 169 | this.appVersion = '' |
| 170 | this.displayName = '' |
| 171 | this.details = [] |
| 172 | this.bundleExecutable = null |
| 173 | this.displayBinarySize = '' |
| 174 | this.binarySize = 0 |
| 175 | this.machoMeta = { |
| 176 | architectures: [] |
| 177 | } |
| 178 | this.binarySupportsNative = false |
| 179 | |
| 180 | this.info = { |
| 181 | appVersion: '', |
| 182 | filename: '', |
| 183 | infoPlist: {}, |
| 184 | machoMeta: null, |
| 185 | result: '🔶' |
| 186 | } |
| 187 | } |
| 188 | |
| 189 | sendMessage ( details: ScanMessage ) { |
| 190 | if ( details.status ) { |
nothing calls this directly
no outgoing calls
no test coverage detected