@futpib/parser 1.0.1 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (425) hide show
  1. package/.github/copilot-instructions.md +149 -0
  2. package/.github/workflows/copilot-setup-steps.yml +18 -0
  3. package/.github/workflows/main.yml +29 -8
  4. package/.yarn/releases/yarn-4.9.4.cjs +942 -0
  5. package/.yarnrc.yml +1 -1
  6. package/build/allSettledStream.js +32 -14
  7. package/build/allSettledStream.test.js +32 -0
  8. package/build/androidPackage.d.ts +39 -0
  9. package/build/androidPackageParser.d.ts +17 -0
  10. package/build/androidPackageParser.js +185 -0
  11. package/build/androidPackageParser.test.js +22 -0
  12. package/build/androidPackageUnparser.d.ts +4 -0
  13. package/build/androidPackageUnparser.js +94 -0
  14. package/build/androidPackageUnparser.test.js +26 -0
  15. package/build/arbitrarilySlicedAsyncInterable.d.ts +3 -1
  16. package/build/arbitrarilySlicedAsyncInterable.js +3 -3
  17. package/build/arbitrarilySlicedAsyncInterator.js +2 -1
  18. package/build/arbitraryDalvikBytecode.d.ts +4 -0
  19. package/build/arbitraryDalvikBytecode.js +640 -0
  20. package/build/arbitraryDalvikExecutable.d.ts +3 -0
  21. package/build/arbitraryDalvikExecutable.js +282 -0
  22. package/build/arbitraryDosDateTime.js +1 -0
  23. package/build/arbitraryZipStream.js +1 -1
  24. package/build/arrayParser.js +2 -2
  25. package/build/arrayParser.test.js +3 -3
  26. package/build/arrayUnparser.d.ts +1 -1
  27. package/build/backsmali.d.ts +3 -0
  28. package/build/backsmali.js +50 -0
  29. package/build/bsonParser.js +6 -2
  30. package/build/customInvariant.d.ts +2 -1
  31. package/build/customInvariant.js +4 -6
  32. package/build/dalvikBytecodeParser/formatParsers.d.ts +171 -0
  33. package/build/dalvikBytecodeParser/formatParsers.js +304 -0
  34. package/build/dalvikBytecodeParser/formatSizes.d.ts +34 -0
  35. package/build/dalvikBytecodeParser/formatSizes.js +34 -0
  36. package/build/dalvikBytecodeParser/operationFormats.d.ts +225 -0
  37. package/build/dalvikBytecodeParser/operationFormats.js +225 -0
  38. package/build/dalvikBytecodeParser.d.ts +1207 -0
  39. package/build/dalvikBytecodeParser.js +1289 -0
  40. package/build/dalvikBytecodeUnparser/formatUnparsers.d.ts +152 -0
  41. package/build/dalvikBytecodeUnparser/formatUnparsers.js +225 -0
  42. package/build/dalvikBytecodeUnparser.d.ts +3 -0
  43. package/build/dalvikBytecodeUnparser.js +642 -0
  44. package/build/dalvikBytecodeUnparser.test.js +25 -0
  45. package/build/dalvikExecutable.d.ts +215 -0
  46. package/build/dalvikExecutable.js +56 -0
  47. package/build/dalvikExecutableParser/stringSyntaxParser.d.ts +4 -0
  48. package/build/dalvikExecutableParser/stringSyntaxParser.js +76 -0
  49. package/build/dalvikExecutableParser/typeParsers.d.ts +11 -0
  50. package/build/dalvikExecutableParser/typeParsers.js +39 -0
  51. package/build/dalvikExecutableParser/typedNumbers.d.ts +106 -0
  52. package/build/dalvikExecutableParser/typedNumbers.js +18 -0
  53. package/build/dalvikExecutableParser.d.ts +5 -0
  54. package/build/dalvikExecutableParser.js +1757 -0
  55. package/build/dalvikExecutableParser.test.js +72 -0
  56. package/build/dalvikExecutableParserAgainstSmaliParser.test.js +275 -0
  57. package/build/dalvikExecutableUnparser/annotationUnparsers.d.ts +14 -0
  58. package/build/dalvikExecutableUnparser/annotationUnparsers.js +97 -0
  59. package/build/dalvikExecutableUnparser/poolBuilders.d.ts +49 -0
  60. package/build/dalvikExecutableUnparser/poolBuilders.js +140 -0
  61. package/build/dalvikExecutableUnparser/poolScanners.d.ts +4 -0
  62. package/build/dalvikExecutableUnparser/poolScanners.js +220 -0
  63. package/build/dalvikExecutableUnparser/sectionUnparsers.d.ts +25 -0
  64. package/build/dalvikExecutableUnparser/sectionUnparsers.js +581 -0
  65. package/build/dalvikExecutableUnparser/utils.d.ts +10 -0
  66. package/build/dalvikExecutableUnparser/utils.js +108 -0
  67. package/build/dalvikExecutableUnparser.d.ts +4 -0
  68. package/build/dalvikExecutableUnparser.js +406 -0
  69. package/build/dalvikExecutableUnparser.test.js +31 -0
  70. package/build/debugLogInputParser.d.ts +4 -0
  71. package/build/debugLogInputParser.js +16 -0
  72. package/build/debugLogParser.js +14 -3
  73. package/build/disjunctionParser.d.ts +2 -1
  74. package/build/disjunctionParser.js +6 -4
  75. package/build/elementTerminatedArrayParser.d.ts +3 -0
  76. package/build/elementTerminatedArrayParser.js +18 -0
  77. package/build/elementTerminatedArrayParser.test.js +52 -0
  78. package/build/elementTerminatedSequenceArrayParser.d.ts +3 -0
  79. package/build/elementTerminatedSequenceArrayParser.js +32 -0
  80. package/build/elementTerminatedSequenceArrayParser.test.js +34 -0
  81. package/build/elementTerminatedSequenceParser.d.ts +3 -0
  82. package/build/elementTerminatedSequenceParser.js +27 -0
  83. package/build/elementTerminatedSequenceParser.test.js +34 -0
  84. package/build/endOfInputParser.d.ts +1 -1
  85. package/build/exactElementParser.js +10 -5
  86. package/build/exactElementSwitchParser.d.ts +3 -0
  87. package/build/exactElementSwitchParser.js +22 -0
  88. package/build/exactSequenceParser.d.ts +2 -1
  89. package/build/exactSequenceParser.js +12 -2
  90. package/build/fetchCid.d.ts +1 -0
  91. package/build/fetchCid.js +103 -0
  92. package/build/fetchCid.test.js +16 -0
  93. package/build/fixedLengthSequenceParser.d.ts +1 -0
  94. package/build/fixedLengthSequenceParser.js +18 -1
  95. package/build/fixedLengthSequenceParser.test.js +41 -0
  96. package/build/hasExecutable.d.ts +1 -0
  97. package/build/hasExecutable.js +8 -0
  98. package/build/highResolutionTimer.d.ts +16 -0
  99. package/build/highResolutionTimer.js +42 -0
  100. package/build/inputReader.d.ts +11 -0
  101. package/build/inputReader.js +37 -0
  102. package/build/inputReader.test.js +161 -8
  103. package/build/inputReaderState.d.ts +10 -0
  104. package/build/inputReaderState.js +16 -0
  105. package/build/inspect.d.ts +1 -0
  106. package/build/inspect.js +7 -0
  107. package/build/javaKeyStoreParser.test.js +8 -8
  108. package/build/jsonParser.d.ts +2 -0
  109. package/build/jsonParser.js +19 -22
  110. package/build/lazyMessageError.d.ts +48 -0
  111. package/build/lazyMessageError.js +53 -0
  112. package/build/lazyMessageError.test.d.ts +1 -0
  113. package/build/lazyMessageError.test.js +15 -0
  114. package/build/leb128Parser.d.ts +7 -0
  115. package/build/leb128Parser.js +82 -0
  116. package/build/leb128Parser.test.d.ts +1 -0
  117. package/build/leb128Parser.test.js +107 -0
  118. package/build/lookaheadParser.d.ts +2 -0
  119. package/build/lookaheadParser.js +14 -0
  120. package/build/negativeLookaheadParser.js +22 -16
  121. package/build/negativeLookaheadParser.test.d.ts +1 -0
  122. package/build/negativeLookaheadParser.test.js +30 -0
  123. package/build/noStackCaptureOverheadError.d.ts +4 -0
  124. package/build/noStackCaptureOverheadError.js +9 -0
  125. package/build/noStackCaptureOverheadError.test.d.ts +1 -0
  126. package/build/noStackCaptureOverheadError.test.js +15 -0
  127. package/build/nonEmptyArrayParser.d.ts +2 -0
  128. package/build/nonEmptyArrayParser.js +32 -0
  129. package/build/nonEmptyArrayParser.test.d.ts +1 -0
  130. package/build/nonEmptyArrayParser.test.js +17 -0
  131. package/build/optionalParser.js +2 -2
  132. package/build/parser.d.ts +11 -1
  133. package/build/parser.js +82 -32
  134. package/build/parser.test.js +141 -25
  135. package/build/parserAccessorParser.js +9 -1
  136. package/build/parserConsumedSequenceParser.d.ts +1 -1
  137. package/build/parserConsumedSequenceParser.js +21 -16
  138. package/build/parserContext.d.ts +22 -6
  139. package/build/parserContext.js +113 -57
  140. package/build/parserContext.test.js +33 -2
  141. package/build/parserCreatorCompose.d.ts +1 -0
  142. package/build/parserCreatorCompose.js +8 -2
  143. package/build/parserError.d.ts +605 -40
  144. package/build/parserError.js +98 -53
  145. package/build/parserImplementationInvariant.d.ts +1 -1
  146. package/build/parserImplementationInvariant.js +2 -2
  147. package/build/parserInputCompanion.d.ts +15 -0
  148. package/build/parserInputCompanion.js +38 -0
  149. package/build/promiseCompose.d.ts +1 -1
  150. package/build/promiseCompose.js +11 -1
  151. package/build/promiseSettled.d.ts +1 -0
  152. package/build/promiseSettled.js +4 -0
  153. package/build/separatedArrayParser.d.ts +2 -0
  154. package/build/separatedArrayParser.js +39 -0
  155. package/build/separatedArrayParser.test.d.ts +1 -0
  156. package/build/separatedArrayParser.test.js +21 -0
  157. package/build/separatedNonEmptyArrayParser.d.ts +2 -0
  158. package/build/separatedNonEmptyArrayParser.js +40 -0
  159. package/build/separatedNonEmptyArrayParser.test.d.ts +1 -0
  160. package/build/separatedNonEmptyArrayParser.test.js +66 -0
  161. package/build/sequenceBuffer.d.ts +10 -0
  162. package/build/sequenceBuffer.js +54 -2
  163. package/build/sequenceBuffer.test.js +57 -0
  164. package/build/sequenceTerminatedSequenceParser.d.ts +5 -0
  165. package/build/sequenceTerminatedSequenceParser.js +32 -0
  166. package/build/sequenceTerminatedSequenceParser.test.d.ts +1 -0
  167. package/build/sequenceTerminatedSequenceParser.test.js +37 -0
  168. package/build/sequenceUnparser.d.ts +1 -1
  169. package/build/skipParser.d.ts +1 -1
  170. package/build/skipParser.js +4 -2
  171. package/build/skipToParser.d.ts +2 -0
  172. package/build/skipToParser.js +11 -0
  173. package/build/sliceBoundedParser.d.ts +1 -1
  174. package/build/sliceBoundedParser.js +7 -2
  175. package/build/sliceBoundedParser.test.js +30 -1
  176. package/build/smali.d.ts +1 -0
  177. package/build/smali.js +21 -0
  178. package/build/smaliParser.d.ts +68 -0
  179. package/build/smaliParser.js +2081 -0
  180. package/build/smaliParser.test.d.ts +1 -0
  181. package/build/smaliParser.test.js +410 -0
  182. package/build/stringFromAsyncIterable.d.ts +1 -0
  183. package/build/stringFromAsyncIterable.js +7 -0
  184. package/build/terminatedArrayParser.d.ts +3 -1
  185. package/build/terminatedArrayParser.js +79 -2
  186. package/build/terminatedArrayParser.test.d.ts +1 -0
  187. package/build/terminatedArrayParser.test.js +131 -0
  188. package/build/toAsyncIterable.d.ts +1 -0
  189. package/build/toAsyncIterable.js +7 -0
  190. package/build/toAsyncIterator.d.ts +1 -0
  191. package/build/toAsyncIterator.js +33 -0
  192. package/build/tupleParser.d.ts +4 -0
  193. package/build/tupleParser.js +1 -5
  194. package/build/unionParser.d.ts +2 -1
  195. package/build/unionParser.js +29 -14
  196. package/build/unionParser.test.d.ts +1 -0
  197. package/build/unionParser.test.js +60 -0
  198. package/build/unparser.d.ts +3 -3
  199. package/build/unparser.js +6 -4
  200. package/build/unparser.test.js +7 -19
  201. package/build/unparserContext.d.ts +2 -2
  202. package/build/unparserContext.js +2 -3
  203. package/build/unparserError.d.ts +2 -1
  204. package/build/unparserError.js +2 -1
  205. package/build/unparserImplementationInvariant.d.ts +1 -1
  206. package/build/unparserOutputCompanion.d.ts +1 -1
  207. package/build/unparserOutputCompanion.js +1 -1
  208. package/build/zipParser.d.ts +7 -2
  209. package/build/zipParser.js +36 -12
  210. package/build/zipUnparser.d.ts +7 -4
  211. package/build/zipUnparser.js +64 -45
  212. package/build/zipUnparser.test.js +15 -15
  213. package/package.json +33 -24
  214. package/src/allSettledStream.test.ts +40 -0
  215. package/src/allSettledStream.ts +47 -15
  216. package/src/androidPackage.ts +48 -0
  217. package/src/androidPackageParser.test.ts +27 -0
  218. package/src/{apkParser.test.ts.md → androidPackageParser.test.ts.md} +4 -4
  219. package/src/androidPackageParser.test.ts.snap +0 -0
  220. package/src/androidPackageParser.ts +398 -0
  221. package/src/androidPackageUnparser.test.ts +34 -0
  222. package/src/androidPackageUnparser.ts +126 -0
  223. package/src/arbitrarilySlicedAsyncInterable.ts +7 -2
  224. package/src/arbitrarilySlicedAsyncInterator.ts +4 -4
  225. package/src/arbitraryDalvikBytecode.ts +992 -0
  226. package/src/arbitraryDalvikExecutable.ts +434 -0
  227. package/src/arbitraryDosDateTime.ts +1 -0
  228. package/src/arbitraryZipStream.ts +1 -1
  229. package/src/arrayParser.test.ts +3 -3
  230. package/src/arrayParser.ts +2 -2
  231. package/src/arrayUnparser.ts +2 -2
  232. package/src/backsmali.ts +74 -0
  233. package/src/bsonParser.test.ts +12 -14
  234. package/src/bsonParser.ts +13 -2
  235. package/src/customInvariant.ts +8 -12
  236. package/src/dalvikBytecodeParser/formatParsers.ts +780 -0
  237. package/src/dalvikBytecodeParser/formatSizes.ts +35 -0
  238. package/src/dalvikBytecodeParser/operationFormats.ts +226 -0
  239. package/src/dalvikBytecodeParser.ts +2873 -0
  240. package/src/dalvikBytecodeUnparser/formatUnparsers.ts +442 -0
  241. package/src/dalvikBytecodeUnparser.test.ts +44 -0
  242. package/src/dalvikBytecodeUnparser.ts +758 -0
  243. package/src/dalvikExecutable.ts +282 -0
  244. package/src/dalvikExecutableParser/stringSyntaxParser.ts +145 -0
  245. package/src/dalvikExecutableParser/typeParsers.ts +74 -0
  246. package/src/dalvikExecutableParser/typedNumbers.ts +57 -0
  247. package/src/dalvikExecutableParser.test.ts +89 -0
  248. package/src/dalvikExecutableParser.test.ts.md +634 -0
  249. package/src/dalvikExecutableParser.test.ts.snap +0 -0
  250. package/src/dalvikExecutableParser.ts +3245 -0
  251. package/src/dalvikExecutableParserAgainstSmaliParser.test.ts +363 -0
  252. package/src/dalvikExecutableUnparser/annotationUnparsers.ts +135 -0
  253. package/src/dalvikExecutableUnparser/poolBuilders.ts +189 -0
  254. package/src/dalvikExecutableUnparser/poolScanners.ts +297 -0
  255. package/src/dalvikExecutableUnparser/sectionUnparsers.ts +683 -0
  256. package/src/dalvikExecutableUnparser/utils.ts +149 -0
  257. package/src/dalvikExecutableUnparser.test.ts +57 -0
  258. package/src/dalvikExecutableUnparser.ts +581 -0
  259. package/src/debugLogInputParser.ts +28 -0
  260. package/src/debugLogParser.ts +19 -3
  261. package/src/disjunctionParser.ts +12 -7
  262. package/src/elementTerminatedArrayParser.test.ts +99 -0
  263. package/src/elementTerminatedArrayParser.ts +31 -0
  264. package/src/elementTerminatedSequenceArrayParser.test.ts +52 -0
  265. package/src/elementTerminatedSequenceArrayParser.ts +52 -0
  266. package/src/elementTerminatedSequenceParser.test.ts +52 -0
  267. package/src/elementTerminatedSequenceParser.ts +43 -0
  268. package/src/endOfInputParser.ts +1 -1
  269. package/src/exactElementParser.ts +17 -11
  270. package/src/exactElementSwitchParser.ts +41 -0
  271. package/src/exactSequenceParser.ts +23 -2
  272. package/src/fetchCid.test.ts +20 -0
  273. package/src/fetchCid.ts +121 -0
  274. package/src/fixedLengthSequenceParser.test.ts +75 -0
  275. package/src/fixedLengthSequenceParser.ts +28 -1
  276. package/src/hasExecutable.ts +11 -0
  277. package/src/highResolutionTimer.ts +49 -0
  278. package/src/inputReader.test.ts +204 -8
  279. package/src/inputReader.ts +76 -3
  280. package/src/inputReaderState.ts +33 -0
  281. package/src/inspect.ts +9 -0
  282. package/src/javaKeyStoreParser.test.ts +12 -15
  283. package/src/javaKeyStoreParser.ts +2 -6
  284. package/src/jsonParser.test.ts +2 -4
  285. package/src/jsonParser.ts +46 -62
  286. package/src/lazyMessageError.test.ts +21 -0
  287. package/src/lazyMessageError.ts +88 -0
  288. package/src/leb128Parser.test.ts +173 -0
  289. package/src/leb128Parser.ts +125 -0
  290. package/src/lookaheadParser.ts +19 -0
  291. package/src/negativeLookaheadParser.test.ts +49 -0
  292. package/src/negativeLookaheadParser.ts +27 -15
  293. package/src/noStackCaptureOverheadError.test.ts +17 -0
  294. package/src/noStackCaptureOverheadError.ts +12 -0
  295. package/src/nonEmptyArrayParser.test.ts +21 -0
  296. package/src/nonEmptyArrayParser.ts +44 -0
  297. package/src/optionalParser.ts +3 -2
  298. package/src/parser.test.ts +203 -31
  299. package/src/parser.test.ts.md +34 -27
  300. package/src/parser.test.ts.snap +0 -0
  301. package/src/parser.ts +172 -45
  302. package/src/parserAccessorParser.ts +12 -2
  303. package/src/parserConsumedSequenceParser.ts +26 -17
  304. package/src/parserContext.test.ts +37 -2
  305. package/src/parserContext.ts +185 -79
  306. package/src/parserCreatorCompose.ts +20 -2
  307. package/src/parserError.ts +144 -61
  308. package/src/parserImplementationInvariant.ts +3 -3
  309. package/src/parserInputCompanion.ts +55 -0
  310. package/src/promiseCompose.ts +17 -3
  311. package/src/promiseSettled.ts +6 -0
  312. package/src/separatedArrayParser.test.ts +34 -0
  313. package/src/separatedArrayParser.ts +55 -0
  314. package/src/separatedNonEmptyArrayParser.test.ts +117 -0
  315. package/src/separatedNonEmptyArrayParser.ts +61 -0
  316. package/src/sequenceBuffer.test.ts +70 -0
  317. package/src/sequenceBuffer.ts +88 -2
  318. package/src/sequenceTerminatedSequenceParser.test.ts +58 -0
  319. package/src/sequenceTerminatedSequenceParser.ts +62 -0
  320. package/src/sequenceUnparser.ts +2 -2
  321. package/src/skipParser.ts +7 -5
  322. package/src/skipToParser.ts +16 -0
  323. package/src/sliceBoundedParser.test.ts +35 -1
  324. package/src/sliceBoundedParser.ts +19 -1
  325. package/src/smali.ts +29 -0
  326. package/src/smaliParser.test.ts +443 -0
  327. package/src/smaliParser.test.ts.md +3907 -0
  328. package/src/smaliParser.test.ts.snap +0 -0
  329. package/src/smaliParser.ts +3348 -0
  330. package/src/stringFromAsyncIterable.ts +9 -0
  331. package/src/terminatedArrayParser.test.ts +258 -0
  332. package/src/terminatedArrayParser.ts +109 -6
  333. package/src/toAsyncIterable.ts +7 -0
  334. package/src/toAsyncIterator.ts +48 -0
  335. package/src/tupleParser.ts +8 -5
  336. package/src/uint8Array.ts +2 -3
  337. package/src/unionParser.test.ts +78 -0
  338. package/src/unionParser.ts +47 -21
  339. package/src/unparser.test.ts +18 -34
  340. package/src/unparser.ts +13 -9
  341. package/src/unparserContext.ts +9 -13
  342. package/src/unparserError.ts +2 -1
  343. package/src/unparserImplementationInvariant.ts +1 -1
  344. package/src/unparserOutputCompanion.ts +1 -1
  345. package/src/zip.ts +2 -6
  346. package/src/zipParser.ts +71 -20
  347. package/src/zipUnparser.test.ts +19 -19
  348. package/src/zipUnparser.ts +139 -90
  349. package/tsconfig.json +7 -1
  350. package/xo.config.ts +15 -0
  351. package/.yarn/releases/yarn-4.5.3.cjs +0 -934
  352. package/build/apk.d.ts +0 -39
  353. package/build/apkParser.d.ts +0 -16
  354. package/build/apkParser.js +0 -164
  355. package/build/apkParser.test.js +0 -22
  356. package/build/apkUnparser.d.ts +0 -4
  357. package/build/apkUnparser.js +0 -90
  358. package/build/apkUnparser.test.js +0 -26
  359. package/build/arbitraryDosDate.d.ts +0 -2
  360. package/build/arbitraryDosDate.js +0 -8
  361. package/build/arbitraryZipEntry.d.ts +0 -3
  362. package/build/arbitraryZipEntry.js +0 -26
  363. package/build/createDisjunctionParser.d.ts +0 -2
  364. package/build/createDisjunctionParser.js +0 -47
  365. package/build/createExactParser.d.ts +0 -2
  366. package/build/createExactParser.js +0 -12
  367. package/build/createSequentialUnionParser.d.ts +0 -2
  368. package/build/createSequentialUnionParser.js +0 -69
  369. package/build/fixedLengthChunkParser.d.ts +0 -2
  370. package/build/fixedLengthChunkParser.js +0 -12
  371. package/build/fixedLengthParser.d.ts +0 -2
  372. package/build/fixedLengthParser.js +0 -12
  373. package/build/inputChunkBuffer.d.ts +0 -15
  374. package/build/inputChunkBuffer.js +0 -40
  375. package/build/inputChunkBuffer.test.js +0 -34
  376. package/build/inputCompanion.d.ts +0 -18
  377. package/build/inputCompanion.js +0 -28
  378. package/build/invariantDefined.d.ts +0 -1
  379. package/build/invariantDefined.js +0 -5
  380. package/build/invariantIdentity.d.ts +0 -3
  381. package/build/invariantIdentity.js +0 -5
  382. package/build/javaKeystoreParser.d.ts +0 -2
  383. package/build/javaKeystoreParser.js +0 -7
  384. package/build/jsonParser2.d.ts +0 -3
  385. package/build/jsonParser2.js +0 -52
  386. package/build/jsonParser2.test.js +0 -22
  387. package/build/negativeLookahead.d.ts +0 -2
  388. package/build/negativeLookahead.js +0 -18
  389. package/build/parserCompose.d.ts +0 -3
  390. package/build/parserCompose.js +0 -7
  391. package/build/parserImplementationInvariantInvariant.d.ts +0 -3
  392. package/build/parserImplementationInvariantInvariant.js +0 -15
  393. package/build/parserInvariant.d.ts +0 -4
  394. package/build/parserInvariant.js +0 -11
  395. package/build/promiseFish.d.ts +0 -1
  396. package/build/promiseFish.js +0 -3
  397. package/build/sequenceParser.d.ts +0 -3
  398. package/build/sequenceParser.js +0 -10
  399. package/build/terminatedSequenceParser.d.ts +0 -2
  400. package/build/terminatedSequenceParser.js +0 -24
  401. package/build/unparserInputCompanion.d.ts +0 -15
  402. package/build/unparserInputCompanion.js +0 -13
  403. package/build/zipEntry.d.ts +0 -28
  404. package/build/zipFile.d.ts +0 -32
  405. package/build/zipFileEntry.d.ts +0 -6
  406. package/src/apk.ts +0 -48
  407. package/src/apkParser.test.ts +0 -30
  408. package/src/apkParser.test.ts.snap +0 -0
  409. package/src/apkParser.ts +0 -392
  410. package/src/apkUnparser.test.ts +0 -37
  411. package/src/apkUnparser.ts +0 -120
  412. package/src/invariantDefined.ts +0 -6
  413. package/src/invariantIdentity.ts +0 -8
  414. /package/build/{apk.js → androidPackage.js} +0 -0
  415. /package/build/{apkParser.test.d.ts → androidPackageParser.test.d.ts} +0 -0
  416. /package/build/{apkUnparser.test.d.ts → androidPackageUnparser.test.d.ts} +0 -0
  417. /package/build/{arbitraryDosPermissions.d.ts → dalvikBytecodeUnparser.test.d.ts} +0 -0
  418. /package/build/{arbitraryDosPermissions.js → dalvikExecutableParser.test.d.ts} +0 -0
  419. /package/build/{inputChunkBuffer.test.d.ts → dalvikExecutableParserAgainstSmaliParser.test.d.ts} +0 -0
  420. /package/build/{jsonParser2.test.d.ts → dalvikExecutableUnparser.test.d.ts} +0 -0
  421. /package/build/{parserParsingInvariant.d.ts → elementTerminatedArrayParser.test.d.ts} +0 -0
  422. /package/build/{parserParsingInvariant.js → elementTerminatedSequenceArrayParser.test.d.ts} +0 -0
  423. /package/build/{zipEntry.js → elementTerminatedSequenceParser.test.d.ts} +0 -0
  424. /package/build/{zipFile.js → fetchCid.test.d.ts} +0 -0
  425. /package/build/{zipFileEntry.js → fixedLengthSequenceParser.test.d.ts} +0 -0
@@ -0,0 +1,3907 @@
1
+ # Snapshot report for `src/smaliParser.test.ts`
2
+
3
+ The actual snapshot is saved in `smaliParser.test.ts.snap`.
4
+
5
+ Generated by [AVA](https://avajs.dev).
6
+
7
+ ## smaliMethodParser ".method public native synthetic instantiateActivity(Ljava/lang/ClassLoader;Ljava/lang/String;Landroid/content/Intent;)Landroid/app/Activity;\n .param p1 # Ljava/lang/ClassLoader;\n .annotation build Landroid/annotation/NonNull;\n .end annotation\n .end param\n.end method\n"
8
+
9
+ > Snapshot 1
10
+
11
+ {
12
+ dalvikExecutableMethodWithAccess: {
13
+ accessFlags: @Object {
14
+ abstract: false,
15
+ annotation: false,
16
+ bridge: false,
17
+ constructor: false,
18
+ declaredSynchronized: false,
19
+ enum: false,
20
+ final: false,
21
+ interface: false,
22
+ native: true,
23
+ private: false,
24
+ protected: false,
25
+ public: true,
26
+ static: false,
27
+ strict: false,
28
+ synchronized: false,
29
+ synthetic: true,
30
+ transient: false,
31
+ varargs: false,
32
+ volatile: false,
33
+ },
34
+ code: undefined,
35
+ method: {
36
+ class: 'FILLED_LATER',
37
+ name: 'instantiateActivity',
38
+ prototype: {
39
+ parameters: [
40
+ 'Ljava/lang/ClassLoader;',
41
+ 'Ljava/lang/String;',
42
+ 'Landroid/content/Intent;',
43
+ ],
44
+ returnType: 'Landroid/app/Activity;',
45
+ shorty: 'LLLL',
46
+ },
47
+ },
48
+ },
49
+ methodAnnotations: [],
50
+ parameterAnnotations: [
51
+ {
52
+ annotation: {
53
+ elements: [],
54
+ type: 'Landroid/annotation/NonNull;',
55
+ visibility: 'build',
56
+ },
57
+ name: undefined,
58
+ register: {
59
+ index: 1,
60
+ prefix: 'p',
61
+ },
62
+ },
63
+ ],
64
+ }
65
+
66
+ ## smaliMethodParser ".method public native synthetic instantiateActivity(Ljava/lang/ClassLoader;Ljava/lang/String;Landroid/content/Intent;)Landroid/app/Activity;\n .param p1 # Ljava/lang/ClassLoader;\n .annotation build Landroid/annotation/NonNull;\n .end annotation\n .end param\n .param p2 # Ljava/lang/String;\n .annotation build Landroid/annotation/NonNull;\n .end annotation\n .end param\n .annotation build Landroid/annotation/NonNull;\n .end annotation\n\n .annotation system Ldalvik/annotation/Throws;\n value = {\n Ljava/lang/ClassNotFoundException;,\n Ljava/lang/IllegalAccessException;,\n Ljava/lang/InstantiationException;\n }\n .end annotation\n.end method\n"
67
+
68
+ > Snapshot 1
69
+
70
+ {
71
+ dalvikExecutableMethodWithAccess: {
72
+ accessFlags: @Object {
73
+ abstract: false,
74
+ annotation: false,
75
+ bridge: false,
76
+ constructor: false,
77
+ declaredSynchronized: false,
78
+ enum: false,
79
+ final: false,
80
+ interface: false,
81
+ native: true,
82
+ private: false,
83
+ protected: false,
84
+ public: true,
85
+ static: false,
86
+ strict: false,
87
+ synchronized: false,
88
+ synthetic: true,
89
+ transient: false,
90
+ varargs: false,
91
+ volatile: false,
92
+ },
93
+ code: undefined,
94
+ method: {
95
+ class: 'FILLED_LATER',
96
+ name: 'instantiateActivity',
97
+ prototype: {
98
+ parameters: [
99
+ 'Ljava/lang/ClassLoader;',
100
+ 'Ljava/lang/String;',
101
+ 'Landroid/content/Intent;',
102
+ ],
103
+ returnType: 'Landroid/app/Activity;',
104
+ shorty: 'LLLL',
105
+ },
106
+ },
107
+ },
108
+ methodAnnotations: [
109
+ {
110
+ elements: [],
111
+ type: 'Landroid/annotation/NonNull;',
112
+ visibility: 'build',
113
+ },
114
+ {
115
+ elements: [
116
+ {
117
+ name: 'value',
118
+ value: {
119
+ kind: 'type',
120
+ value: [
121
+ 'Ljava/lang/ClassNotFoundException;',
122
+ 'Ljava/lang/IllegalAccessException;',
123
+ 'Ljava/lang/InstantiationException;',
124
+ ],
125
+ },
126
+ },
127
+ ],
128
+ type: 'Ldalvik/annotation/Throws;',
129
+ visibility: 'system',
130
+ },
131
+ ],
132
+ parameterAnnotations: [
133
+ {
134
+ annotation: {
135
+ elements: [],
136
+ type: 'Landroid/annotation/NonNull;',
137
+ visibility: 'build',
138
+ },
139
+ name: undefined,
140
+ register: {
141
+ index: 1,
142
+ prefix: 'p',
143
+ },
144
+ },
145
+ {
146
+ annotation: {
147
+ elements: [],
148
+ type: 'Landroid/annotation/NonNull;',
149
+ visibility: 'build',
150
+ },
151
+ name: undefined,
152
+ register: {
153
+ index: 2,
154
+ prefix: 'p',
155
+ },
156
+ },
157
+ ],
158
+ }
159
+
160
+ ## smaliCodeOperationParser " .packed-switch 0x0\n :pswitch_5\n .end packed-switch\n"
161
+
162
+ > Snapshot 1
163
+
164
+ {
165
+ branchLabels: [
166
+ 'pswitch_5',
167
+ ],
168
+ operation: 'packed-switch-payload',
169
+ value: 0,
170
+ }
171
+
172
+ ## smaliCodeOperationParser " .sparse-switch\n -0x7073f927 -> :sswitch_47\n -0x3465cce -> :sswitch_3e\n 0x388694fe -> :sswitch_33\n 0x3cbf870b -> :sswitch_28\n .end sparse-switch\n"
173
+
174
+ > Snapshot 1
175
+
176
+ {
177
+ branchLabels: [
178
+ 'sswitch_47',
179
+ 'sswitch_3e',
180
+ 'sswitch_33',
181
+ 'sswitch_28',
182
+ ],
183
+ keys: [
184
+ -1886648615,
185
+ -54942926,
186
+ 948344062,
187
+ 1019184907,
188
+ ],
189
+ operation: 'sparse-switch-payload',
190
+ }
191
+
192
+ ## smaliCodeOperationParser " .array-data 4\n 0x10100a7\n 0x101009e\n .end array-data\n"
193
+
194
+ > Snapshot 1
195
+
196
+ {
197
+ data: [
198
+ 167,
199
+ 0,
200
+ 1,
201
+ 1,
202
+ 158,
203
+ 0,
204
+ 1,
205
+ 1,
206
+ ],
207
+ elementWidth: 4,
208
+ operation: 'fill-array-data-payload',
209
+ }
210
+
211
+ ## smaliMethodParser ".method public final a()Landroid/os/Bundle;\n .registers 2\n\n iget v0, p0, Landroidx/lifecycle/b0;->a:I\n\n packed-switch v0, :pswitch_data_c\n\n :pswitch_5\n iget-object v0, p0, Landroidx/lifecycle/b0;->b:Landroidx/lifecycle/c0;\n\n invoke-static {v0}, Landroidx/lifecycle/c0;->a(Landroidx/lifecycle/c0;)Landroid/os/Bundle;\n\n move-result-object v0\n\n return-object v0\n\n :pswitch_data_c\n .packed-switch 0x0\n :pswitch_5\n .end packed-switch\n.end method\n"
212
+
213
+ > Snapshot 1
214
+
215
+ {
216
+ dalvikExecutableMethodWithAccess: {
217
+ accessFlags: @Object {
218
+ abstract: false,
219
+ annotation: false,
220
+ bridge: false,
221
+ constructor: false,
222
+ declaredSynchronized: false,
223
+ enum: false,
224
+ final: true,
225
+ interface: false,
226
+ native: false,
227
+ private: false,
228
+ protected: false,
229
+ public: true,
230
+ static: false,
231
+ strict: false,
232
+ synchronized: false,
233
+ synthetic: false,
234
+ transient: false,
235
+ varargs: false,
236
+ volatile: false,
237
+ },
238
+ code: {
239
+ debugInfo: undefined,
240
+ insSize: 1,
241
+ instructions: [
242
+ {
243
+ field: {
244
+ class: 'Landroidx/lifecycle/b0;',
245
+ name: 'a',
246
+ type: 'I',
247
+ },
248
+ operation: 'iget',
249
+ registers: [
250
+ 0,
251
+ 1,
252
+ ],
253
+ },
254
+ {
255
+ branchOffset: 10,
256
+ operation: 'packed-switch',
257
+ registers: [
258
+ 0,
259
+ ],
260
+ },
261
+ {
262
+ field: {
263
+ class: 'Landroidx/lifecycle/b0;',
264
+ name: 'b',
265
+ type: 'Landroidx/lifecycle/c0;',
266
+ },
267
+ operation: 'iget-object',
268
+ registers: [
269
+ 0,
270
+ 1,
271
+ ],
272
+ },
273
+ {
274
+ method: {
275
+ class: 'Landroidx/lifecycle/c0;',
276
+ name: 'a',
277
+ prototype: {
278
+ parameters: [
279
+ 'Landroidx/lifecycle/c0;',
280
+ ],
281
+ returnType: 'Landroid/os/Bundle;',
282
+ shorty: 'LL',
283
+ },
284
+ },
285
+ operation: 'invoke-static',
286
+ registers: [
287
+ 0,
288
+ ],
289
+ },
290
+ {
291
+ operation: 'move-result-object',
292
+ registers: [
293
+ 0,
294
+ ],
295
+ },
296
+ {
297
+ operation: 'return-object',
298
+ registers: [
299
+ 0,
300
+ ],
301
+ },
302
+ {
303
+ branchOffsets: [
304
+ 3,
305
+ ],
306
+ operation: 'packed-switch-payload',
307
+ value: 0,
308
+ },
309
+ ],
310
+ outsSize: 1,
311
+ registersSize: 2,
312
+ tries: [],
313
+ },
314
+ method: {
315
+ class: 'FILLED_LATER',
316
+ name: 'a',
317
+ prototype: {
318
+ parameters: [],
319
+ returnType: 'Landroid/os/Bundle;',
320
+ shorty: 'L',
321
+ },
322
+ },
323
+ },
324
+ methodAnnotations: [],
325
+ parameterAnnotations: [],
326
+ }
327
+
328
+ ## smali from dex bafkreibb4gsprc3fvmnyqx6obswvm7e7wngnfj64gz65ey72r7xgyzymt4 pl/czak/minimal/MainActivity
329
+
330
+ > Snapshot 1
331
+
332
+ {
333
+ accessFlags: @Object {
334
+ abstract: false,
335
+ annotation: false,
336
+ bridge: false,
337
+ constructor: false,
338
+ declaredSynchronized: false,
339
+ enum: false,
340
+ final: false,
341
+ interface: false,
342
+ native: false,
343
+ private: false,
344
+ protected: false,
345
+ public: true,
346
+ static: false,
347
+ strict: false,
348
+ synchronized: false,
349
+ synthetic: false,
350
+ transient: false,
351
+ varargs: false,
352
+ volatile: false,
353
+ },
354
+ annotations: undefined,
355
+ class: 'Lpl/czak/minimal/MainActivity;',
356
+ classData: {
357
+ directMethods: [
358
+ {
359
+ accessFlags: @Object {
360
+ abstract: false,
361
+ annotation: false,
362
+ bridge: false,
363
+ constructor: true,
364
+ declaredSynchronized: false,
365
+ enum: false,
366
+ final: false,
367
+ interface: false,
368
+ native: false,
369
+ private: false,
370
+ protected: false,
371
+ public: true,
372
+ static: false,
373
+ strict: false,
374
+ synchronized: false,
375
+ synthetic: false,
376
+ transient: false,
377
+ varargs: false,
378
+ volatile: false,
379
+ },
380
+ code: {
381
+ debugInfo: {
382
+ bytecode: [
383
+ {
384
+ type: 'special',
385
+ value: 14,
386
+ },
387
+ ],
388
+ lineStart: 7,
389
+ parameterNames: [],
390
+ },
391
+ insSize: 1,
392
+ instructions: [
393
+ {
394
+ method: {
395
+ class: 'Landroid/app/Activity;',
396
+ name: '<init>',
397
+ prototype: {
398
+ parameters: [],
399
+ returnType: 'V',
400
+ shorty: 'V',
401
+ },
402
+ },
403
+ operation: 'invoke-direct',
404
+ registers: [
405
+ 0,
406
+ ],
407
+ },
408
+ {
409
+ operation: 'return-void',
410
+ },
411
+ ],
412
+ outsSize: 1,
413
+ registersSize: 1,
414
+ tries: [],
415
+ },
416
+ method: {
417
+ class: 'Lpl/czak/minimal/MainActivity;',
418
+ name: '<init>',
419
+ prototype: {
420
+ parameters: [],
421
+ returnType: 'V',
422
+ shorty: 'V',
423
+ },
424
+ },
425
+ },
426
+ ],
427
+ instanceFields: [],
428
+ staticFields: [],
429
+ virtualMethods: [
430
+ {
431
+ accessFlags: @Object {
432
+ abstract: false,
433
+ annotation: false,
434
+ bridge: false,
435
+ constructor: false,
436
+ declaredSynchronized: false,
437
+ enum: false,
438
+ final: false,
439
+ interface: false,
440
+ native: false,
441
+ private: false,
442
+ protected: false,
443
+ public: true,
444
+ static: false,
445
+ strict: false,
446
+ synchronized: false,
447
+ synthetic: false,
448
+ transient: false,
449
+ varargs: false,
450
+ volatile: false,
451
+ },
452
+ code: {
453
+ debugInfo: {
454
+ bytecode: [
455
+ {
456
+ type: 'special',
457
+ value: 17,
458
+ },
459
+ {
460
+ name: 'label',
461
+ registerNum: 0,
462
+ type: 'startLocal',
463
+ type_: 'Landroid/widget/TextView;',
464
+ },
465
+ {
466
+ type: 'special',
467
+ value: 137,
468
+ },
469
+ ],
470
+ lineStart: 11,
471
+ parameterNames: [
472
+ 'savedInstanceState',
473
+ ],
474
+ },
475
+ insSize: 2,
476
+ instructions: [
477
+ {
478
+ method: {
479
+ class: 'Landroid/app/Activity;',
480
+ name: 'onCreate',
481
+ prototype: {
482
+ parameters: [
483
+ 'Landroid/os/Bundle;',
484
+ ],
485
+ returnType: 'V',
486
+ shorty: 'VL',
487
+ },
488
+ },
489
+ operation: 'invoke-super',
490
+ registers: [
491
+ 2,
492
+ 3,
493
+ ],
494
+ },
495
+ {
496
+ operation: 'new-instance',
497
+ registers: [
498
+ 0,
499
+ ],
500
+ type: 'Landroid/widget/TextView;',
501
+ },
502
+ {
503
+ method: {
504
+ class: 'Landroid/widget/TextView;',
505
+ name: '<init>',
506
+ prototype: {
507
+ parameters: [
508
+ 'Landroid/content/Context;',
509
+ ],
510
+ returnType: 'V',
511
+ shorty: 'VL',
512
+ },
513
+ },
514
+ operation: 'invoke-direct',
515
+ registers: [
516
+ 0,
517
+ 2,
518
+ ],
519
+ },
520
+ {
521
+ operation: 'const-string',
522
+ registers: [
523
+ 1,
524
+ ],
525
+ string: 'Hello world!',
526
+ },
527
+ {
528
+ method: {
529
+ class: 'Landroid/widget/TextView;',
530
+ name: 'setText',
531
+ prototype: {
532
+ parameters: [
533
+ 'Ljava/lang/CharSequence;',
534
+ ],
535
+ returnType: 'V',
536
+ shorty: 'VL',
537
+ },
538
+ },
539
+ operation: 'invoke-virtual',
540
+ registers: [
541
+ 0,
542
+ 1,
543
+ ],
544
+ },
545
+ {
546
+ method: {
547
+ class: 'Lpl/czak/minimal/MainActivity;',
548
+ name: 'setContentView',
549
+ prototype: {
550
+ parameters: [
551
+ 'Landroid/view/View;',
552
+ ],
553
+ returnType: 'V',
554
+ shorty: 'VL',
555
+ },
556
+ },
557
+ operation: 'invoke-virtual',
558
+ registers: [
559
+ 2,
560
+ 0,
561
+ ],
562
+ },
563
+ {
564
+ operation: 'return-void',
565
+ },
566
+ ],
567
+ outsSize: 2,
568
+ registersSize: 4,
569
+ tries: [],
570
+ },
571
+ method: {
572
+ class: 'Lpl/czak/minimal/MainActivity;',
573
+ name: 'onCreate',
574
+ prototype: {
575
+ parameters: [
576
+ 'Landroid/os/Bundle;',
577
+ ],
578
+ returnType: 'V',
579
+ shorty: 'VL',
580
+ },
581
+ },
582
+ },
583
+ ],
584
+ },
585
+ interfaces: [],
586
+ sourceFile: 'MainActivity.java',
587
+ staticValues: [],
588
+ superclass: 'Landroid/app/Activity;',
589
+ }
590
+
591
+ ## smali from dex bafybeiebe27ylo53trgitu6fqfbmba43c4ivxj3nt4kumsilkucpbdxtqq d/m
592
+
593
+ > Snapshot 1
594
+
595
+ {
596
+ accessFlags: @Object {
597
+ abstract: false,
598
+ annotation: false,
599
+ bridge: false,
600
+ constructor: false,
601
+ declaredSynchronized: false,
602
+ enum: false,
603
+ final: false,
604
+ interface: false,
605
+ native: false,
606
+ private: false,
607
+ protected: false,
608
+ public: true,
609
+ static: false,
610
+ strict: false,
611
+ synchronized: false,
612
+ synthetic: false,
613
+ transient: false,
614
+ varargs: false,
615
+ volatile: false,
616
+ },
617
+ annotations: {
618
+ classAnnotations: [],
619
+ fieldAnnotations: [],
620
+ methodAnnotations: [
621
+ {
622
+ annotations: [
623
+ {
624
+ elements: [
625
+ {
626
+ name: 'value',
627
+ value: {
628
+ type: 'array',
629
+ value: [
630
+ {
631
+ type: 'string',
632
+ value: '<T:',
633
+ },
634
+ {
635
+ type: 'string',
636
+ value: 'Landroid/view/View;',
637
+ },
638
+ {
639
+ type: 'string',
640
+ value: '>(I)TT;',
641
+ },
642
+ ],
643
+ },
644
+ },
645
+ ],
646
+ type: 'Ldalvik/annotation/Signature;',
647
+ visibility: 'system',
648
+ },
649
+ ],
650
+ method: {
651
+ class: 'Ld/m;',
652
+ name: 'findViewById',
653
+ prototype: {
654
+ parameters: [
655
+ 'I',
656
+ ],
657
+ returnType: 'Landroid/view/View;',
658
+ shorty: 'LI',
659
+ },
660
+ },
661
+ },
662
+ ],
663
+ parameterAnnotations: [],
664
+ },
665
+ class: 'Ld/m;',
666
+ classData: {
667
+ directMethods: [
668
+ {
669
+ accessFlags: @Object {
670
+ abstract: false,
671
+ annotation: false,
672
+ bridge: false,
673
+ constructor: true,
674
+ declaredSynchronized: false,
675
+ enum: false,
676
+ final: false,
677
+ interface: false,
678
+ native: false,
679
+ private: false,
680
+ protected: false,
681
+ public: true,
682
+ static: false,
683
+ strict: false,
684
+ synchronized: false,
685
+ synthetic: false,
686
+ transient: false,
687
+ varargs: false,
688
+ volatile: false,
689
+ },
690
+ code: {
691
+ debugInfo: {
692
+ bytecode: [
693
+ {
694
+ lineDiff: 63,
695
+ type: 'advanceLine',
696
+ },
697
+ ],
698
+ lineStart: 1,
699
+ parameterNames: [
700
+ undefined,
701
+ undefined,
702
+ ],
703
+ },
704
+ insSize: 3,
705
+ instructions: [
706
+ {
707
+ operation: 'const/4',
708
+ registers: [
709
+ 0,
710
+ ],
711
+ value: 1,
712
+ },
713
+ {
714
+ operation: 'const',
715
+ registers: [
716
+ 1,
717
+ ],
718
+ value: 2130903347,
719
+ },
720
+ {
721
+ branchOffset: 17,
722
+ operation: 'if-nez',
723
+ registers: [
724
+ 6,
725
+ ],
726
+ },
727
+ {
728
+ operation: 'new-instance',
729
+ registers: [
730
+ 2,
731
+ ],
732
+ type: 'Landroid/util/TypedValue;',
733
+ },
734
+ {
735
+ method: {
736
+ class: 'Landroid/util/TypedValue;',
737
+ name: '<init>',
738
+ prototype: {
739
+ parameters: [],
740
+ returnType: 'V',
741
+ shorty: 'V',
742
+ },
743
+ },
744
+ operation: 'invoke-direct',
745
+ registers: [
746
+ 2,
747
+ ],
748
+ },
749
+ {
750
+ method: {
751
+ class: 'Landroid/content/Context;',
752
+ name: 'getTheme',
753
+ prototype: {
754
+ parameters: [],
755
+ returnType: 'Landroid/content/res/Resources$Theme;',
756
+ shorty: 'L',
757
+ },
758
+ },
759
+ operation: 'invoke-virtual',
760
+ registers: [
761
+ 5,
762
+ ],
763
+ },
764
+ {
765
+ operation: 'move-result-object',
766
+ registers: [
767
+ 3,
768
+ ],
769
+ },
770
+ {
771
+ method: {
772
+ class: 'Landroid/content/res/Resources$Theme;',
773
+ name: 'resolveAttribute',
774
+ prototype: {
775
+ parameters: [
776
+ 'I',
777
+ 'Landroid/util/TypedValue;',
778
+ 'Z',
779
+ ],
780
+ returnType: 'Z',
781
+ shorty: 'ZILZ',
782
+ },
783
+ },
784
+ operation: 'invoke-virtual',
785
+ registers: [
786
+ 3,
787
+ 1,
788
+ 2,
789
+ 0,
790
+ ],
791
+ },
792
+ {
793
+ field: {
794
+ class: 'Landroid/util/TypedValue;',
795
+ name: 'resourceId',
796
+ type: 'I',
797
+ },
798
+ operation: 'iget',
799
+ registers: [
800
+ 2,
801
+ 2,
802
+ ],
803
+ },
804
+ {
805
+ branchOffset: 2,
806
+ operation: 'goto',
807
+ },
808
+ {
809
+ operation: 'move',
810
+ registers: [
811
+ 6,
812
+ 2,
813
+ ],
814
+ },
815
+ {
816
+ method: {
817
+ class: 'Landroidx/activity/e;',
818
+ name: '<init>',
819
+ prototype: {
820
+ parameters: [
821
+ 'Landroid/content/Context;',
822
+ 'I',
823
+ ],
824
+ returnType: 'V',
825
+ shorty: 'VLI',
826
+ },
827
+ },
828
+ operation: 'invoke-direct',
829
+ registers: [
830
+ 4,
831
+ 5,
832
+ 2,
833
+ ],
834
+ },
835
+ {
836
+ operation: 'new-instance',
837
+ registers: [
838
+ 2,
839
+ ],
840
+ type: 'Ld/l;',
841
+ },
842
+ {
843
+ operation: 'move-object',
844
+ registers: [
845
+ 4,
846
+ 3,
847
+ ],
848
+ },
849
+ {
850
+ operation: 'check-cast',
851
+ registers: [
852
+ 3,
853
+ ],
854
+ type: 'Landroidx/appcompat/app/b;',
855
+ },
856
+ {
857
+ method: {
858
+ class: 'Ld/l;',
859
+ name: '<init>',
860
+ prototype: {
861
+ parameters: [
862
+ 'Landroidx/appcompat/app/b;',
863
+ ],
864
+ returnType: 'V',
865
+ shorty: 'VL',
866
+ },
867
+ },
868
+ operation: 'invoke-direct',
869
+ registers: [
870
+ 2,
871
+ 3,
872
+ ],
873
+ },
874
+ {
875
+ field: {
876
+ class: 'Ld/m;',
877
+ name: 'm',
878
+ type: 'Ld/l;',
879
+ },
880
+ operation: 'iput-object',
881
+ registers: [
882
+ 2,
883
+ 4,
884
+ ],
885
+ },
886
+ {
887
+ method: {
888
+ class: 'Ld/m;',
889
+ name: 'f',
890
+ prototype: {
891
+ parameters: [],
892
+ returnType: 'Ld/f;',
893
+ shorty: 'L',
894
+ },
895
+ },
896
+ operation: 'invoke-virtual',
897
+ registers: [
898
+ 4,
899
+ ],
900
+ },
901
+ {
902
+ operation: 'move-result-object',
903
+ registers: [
904
+ 2,
905
+ ],
906
+ },
907
+ {
908
+ branchOffset: 16,
909
+ operation: 'if-nez',
910
+ registers: [
911
+ 6,
912
+ ],
913
+ },
914
+ {
915
+ operation: 'new-instance',
916
+ registers: [
917
+ 6,
918
+ ],
919
+ type: 'Landroid/util/TypedValue;',
920
+ },
921
+ {
922
+ method: {
923
+ class: 'Landroid/util/TypedValue;',
924
+ name: '<init>',
925
+ prototype: {
926
+ parameters: [],
927
+ returnType: 'V',
928
+ shorty: 'V',
929
+ },
930
+ },
931
+ operation: 'invoke-direct',
932
+ registers: [
933
+ 6,
934
+ ],
935
+ },
936
+ {
937
+ method: {
938
+ class: 'Landroid/content/Context;',
939
+ name: 'getTheme',
940
+ prototype: {
941
+ parameters: [],
942
+ returnType: 'Landroid/content/res/Resources$Theme;',
943
+ shorty: 'L',
944
+ },
945
+ },
946
+ operation: 'invoke-virtual',
947
+ registers: [
948
+ 5,
949
+ ],
950
+ },
951
+ {
952
+ operation: 'move-result-object',
953
+ registers: [
954
+ 5,
955
+ ],
956
+ },
957
+ {
958
+ method: {
959
+ class: 'Landroid/content/res/Resources$Theme;',
960
+ name: 'resolveAttribute',
961
+ prototype: {
962
+ parameters: [
963
+ 'I',
964
+ 'Landroid/util/TypedValue;',
965
+ 'Z',
966
+ ],
967
+ returnType: 'Z',
968
+ shorty: 'ZILZ',
969
+ },
970
+ },
971
+ operation: 'invoke-virtual',
972
+ registers: [
973
+ 5,
974
+ 1,
975
+ 6,
976
+ 0,
977
+ ],
978
+ },
979
+ {
980
+ field: {
981
+ class: 'Landroid/util/TypedValue;',
982
+ name: 'resourceId',
983
+ type: 'I',
984
+ },
985
+ operation: 'iget',
986
+ registers: [
987
+ 6,
988
+ 6,
989
+ ],
990
+ },
991
+ {
992
+ operation: 'move-object',
993
+ registers: [
994
+ 2,
995
+ 5,
996
+ ],
997
+ },
998
+ {
999
+ operation: 'check-cast',
1000
+ registers: [
1001
+ 5,
1002
+ ],
1003
+ type: 'Ld/g;',
1004
+ },
1005
+ {
1006
+ field: {
1007
+ class: 'Ld/g;',
1008
+ name: 'X',
1009
+ type: 'I',
1010
+ },
1011
+ operation: 'iput',
1012
+ registers: [
1013
+ 6,
1014
+ 5,
1015
+ ],
1016
+ },
1017
+ {
1018
+ method: {
1019
+ class: 'Ld/f;',
1020
+ name: 'l',
1021
+ prototype: {
1022
+ parameters: [],
1023
+ returnType: 'V',
1024
+ shorty: 'V',
1025
+ },
1026
+ },
1027
+ operation: 'invoke-virtual',
1028
+ registers: [
1029
+ 2,
1030
+ ],
1031
+ },
1032
+ {
1033
+ operation: 'return-void',
1034
+ },
1035
+ ],
1036
+ outsSize: 4,
1037
+ registersSize: 7,
1038
+ tries: [],
1039
+ },
1040
+ method: {
1041
+ class: 'Ld/m;',
1042
+ name: '<init>',
1043
+ prototype: {
1044
+ parameters: [
1045
+ 'Landroid/content/Context;',
1046
+ 'I',
1047
+ ],
1048
+ returnType: 'V',
1049
+ shorty: 'VLI',
1050
+ },
1051
+ },
1052
+ },
1053
+ ],
1054
+ instanceFields: [
1055
+ {
1056
+ accessFlags: @Object {
1057
+ abstract: false,
1058
+ annotation: false,
1059
+ bridge: false,
1060
+ constructor: false,
1061
+ declaredSynchronized: false,
1062
+ enum: false,
1063
+ final: false,
1064
+ interface: false,
1065
+ native: false,
1066
+ private: false,
1067
+ protected: false,
1068
+ public: true,
1069
+ static: false,
1070
+ strict: false,
1071
+ synchronized: false,
1072
+ synthetic: false,
1073
+ transient: false,
1074
+ varargs: false,
1075
+ volatile: false,
1076
+ },
1077
+ field: {
1078
+ class: 'Ld/m;',
1079
+ name: 'l',
1080
+ type: 'Ld/g;',
1081
+ },
1082
+ },
1083
+ {
1084
+ accessFlags: @Object {
1085
+ abstract: false,
1086
+ annotation: false,
1087
+ bridge: false,
1088
+ constructor: false,
1089
+ declaredSynchronized: false,
1090
+ enum: false,
1091
+ final: true,
1092
+ interface: false,
1093
+ native: false,
1094
+ private: false,
1095
+ protected: false,
1096
+ public: true,
1097
+ static: false,
1098
+ strict: false,
1099
+ synchronized: false,
1100
+ synthetic: false,
1101
+ transient: false,
1102
+ varargs: false,
1103
+ volatile: false,
1104
+ },
1105
+ field: {
1106
+ class: 'Ld/m;',
1107
+ name: 'm',
1108
+ type: 'Ld/l;',
1109
+ },
1110
+ },
1111
+ ],
1112
+ staticFields: [],
1113
+ virtualMethods: [
1114
+ {
1115
+ accessFlags: @Object {
1116
+ abstract: false,
1117
+ annotation: false,
1118
+ bridge: false,
1119
+ constructor: false,
1120
+ declaredSynchronized: false,
1121
+ enum: false,
1122
+ final: true,
1123
+ interface: false,
1124
+ native: false,
1125
+ private: false,
1126
+ protected: false,
1127
+ public: true,
1128
+ static: false,
1129
+ strict: false,
1130
+ synchronized: false,
1131
+ synthetic: false,
1132
+ transient: false,
1133
+ varargs: false,
1134
+ volatile: false,
1135
+ },
1136
+ code: {
1137
+ debugInfo: undefined,
1138
+ insSize: 3,
1139
+ instructions: [
1140
+ {
1141
+ method: {
1142
+ class: 'Ld/m;',
1143
+ name: 'f',
1144
+ prototype: {
1145
+ parameters: [],
1146
+ returnType: 'Ld/f;',
1147
+ shorty: 'L',
1148
+ },
1149
+ },
1150
+ operation: 'invoke-virtual',
1151
+ registers: [
1152
+ 1,
1153
+ ],
1154
+ },
1155
+ {
1156
+ operation: 'move-result-object',
1157
+ registers: [
1158
+ 0,
1159
+ ],
1160
+ },
1161
+ {
1162
+ method: {
1163
+ class: 'Ld/f;',
1164
+ name: 'c',
1165
+ prototype: {
1166
+ parameters: [
1167
+ 'Landroid/view/View;',
1168
+ 'Landroid/view/ViewGroup$LayoutParams;',
1169
+ ],
1170
+ returnType: 'V',
1171
+ shorty: 'VLL',
1172
+ },
1173
+ },
1174
+ operation: 'invoke-virtual',
1175
+ registers: [
1176
+ 0,
1177
+ 2,
1178
+ 3,
1179
+ ],
1180
+ },
1181
+ {
1182
+ operation: 'return-void',
1183
+ },
1184
+ ],
1185
+ outsSize: 3,
1186
+ registersSize: 4,
1187
+ tries: [],
1188
+ },
1189
+ method: {
1190
+ class: 'Ld/m;',
1191
+ name: 'addContentView',
1192
+ prototype: {
1193
+ parameters: [
1194
+ 'Landroid/view/View;',
1195
+ 'Landroid/view/ViewGroup$LayoutParams;',
1196
+ ],
1197
+ returnType: 'V',
1198
+ shorty: 'VLL',
1199
+ },
1200
+ },
1201
+ },
1202
+ {
1203
+ accessFlags: @Object {
1204
+ abstract: false,
1205
+ annotation: false,
1206
+ bridge: false,
1207
+ constructor: false,
1208
+ declaredSynchronized: false,
1209
+ enum: false,
1210
+ final: true,
1211
+ interface: false,
1212
+ native: false,
1213
+ private: false,
1214
+ protected: false,
1215
+ public: true,
1216
+ static: false,
1217
+ strict: false,
1218
+ synchronized: false,
1219
+ synthetic: false,
1220
+ transient: false,
1221
+ varargs: false,
1222
+ volatile: false,
1223
+ },
1224
+ code: {
1225
+ debugInfo: undefined,
1226
+ insSize: 1,
1227
+ instructions: [
1228
+ {
1229
+ method: {
1230
+ class: 'Landroid/app/Dialog;',
1231
+ name: 'dismiss',
1232
+ prototype: {
1233
+ parameters: [],
1234
+ returnType: 'V',
1235
+ shorty: 'V',
1236
+ },
1237
+ },
1238
+ operation: 'invoke-super',
1239
+ registers: [
1240
+ 1,
1241
+ ],
1242
+ },
1243
+ {
1244
+ method: {
1245
+ class: 'Ld/m;',
1246
+ name: 'f',
1247
+ prototype: {
1248
+ parameters: [],
1249
+ returnType: 'Ld/f;',
1250
+ shorty: 'L',
1251
+ },
1252
+ },
1253
+ operation: 'invoke-virtual',
1254
+ registers: [
1255
+ 1,
1256
+ ],
1257
+ },
1258
+ {
1259
+ operation: 'move-result-object',
1260
+ registers: [
1261
+ 0,
1262
+ ],
1263
+ },
1264
+ {
1265
+ method: {
1266
+ class: 'Ld/f;',
1267
+ name: 'm',
1268
+ prototype: {
1269
+ parameters: [],
1270
+ returnType: 'V',
1271
+ shorty: 'V',
1272
+ },
1273
+ },
1274
+ operation: 'invoke-virtual',
1275
+ registers: [
1276
+ 0,
1277
+ ],
1278
+ },
1279
+ {
1280
+ operation: 'return-void',
1281
+ },
1282
+ ],
1283
+ outsSize: 1,
1284
+ registersSize: 2,
1285
+ tries: [],
1286
+ },
1287
+ method: {
1288
+ class: 'Ld/m;',
1289
+ name: 'dismiss',
1290
+ prototype: {
1291
+ parameters: [],
1292
+ returnType: 'V',
1293
+ shorty: 'V',
1294
+ },
1295
+ },
1296
+ },
1297
+ {
1298
+ accessFlags: @Object {
1299
+ abstract: false,
1300
+ annotation: false,
1301
+ bridge: false,
1302
+ constructor: false,
1303
+ declaredSynchronized: false,
1304
+ enum: false,
1305
+ final: true,
1306
+ interface: false,
1307
+ native: false,
1308
+ private: false,
1309
+ protected: false,
1310
+ public: true,
1311
+ static: false,
1312
+ strict: false,
1313
+ synchronized: false,
1314
+ synthetic: false,
1315
+ transient: false,
1316
+ varargs: false,
1317
+ volatile: false,
1318
+ },
1319
+ code: {
1320
+ debugInfo: undefined,
1321
+ insSize: 2,
1322
+ instructions: [
1323
+ {
1324
+ method: {
1325
+ class: 'Landroid/app/Dialog;',
1326
+ name: 'getWindow',
1327
+ prototype: {
1328
+ parameters: [],
1329
+ returnType: 'Landroid/view/Window;',
1330
+ shorty: 'L',
1331
+ },
1332
+ },
1333
+ operation: 'invoke-virtual',
1334
+ registers: [
1335
+ 2,
1336
+ ],
1337
+ },
1338
+ {
1339
+ operation: 'move-result-object',
1340
+ registers: [
1341
+ 0,
1342
+ ],
1343
+ },
1344
+ {
1345
+ method: {
1346
+ class: 'Landroid/view/Window;',
1347
+ name: 'getDecorView',
1348
+ prototype: {
1349
+ parameters: [],
1350
+ returnType: 'Landroid/view/View;',
1351
+ shorty: 'L',
1352
+ },
1353
+ },
1354
+ operation: 'invoke-virtual',
1355
+ registers: [
1356
+ 0,
1357
+ ],
1358
+ },
1359
+ {
1360
+ operation: 'move-result-object',
1361
+ registers: [
1362
+ 0,
1363
+ ],
1364
+ },
1365
+ {
1366
+ field: {
1367
+ class: 'Ld/m;',
1368
+ name: 'm',
1369
+ type: 'Ld/l;',
1370
+ },
1371
+ operation: 'iget-object',
1372
+ registers: [
1373
+ 1,
1374
+ 2,
1375
+ ],
1376
+ },
1377
+ {
1378
+ method: {
1379
+ class: 'Ly2/f;',
1380
+ name: 'b',
1381
+ prototype: {
1382
+ parameters: [
1383
+ 'Ly2/f$a;',
1384
+ 'Landroid/view/View;',
1385
+ 'Landroid/view/Window$Callback;',
1386
+ 'Landroid/view/KeyEvent;',
1387
+ ],
1388
+ returnType: 'Z',
1389
+ shorty: 'ZLLLL',
1390
+ },
1391
+ },
1392
+ operation: 'invoke-static',
1393
+ registers: [
1394
+ 1,
1395
+ 0,
1396
+ 2,
1397
+ 3,
1398
+ ],
1399
+ },
1400
+ {
1401
+ operation: 'move-result',
1402
+ registers: [
1403
+ 3,
1404
+ ],
1405
+ },
1406
+ {
1407
+ operation: 'return',
1408
+ registers: [
1409
+ 3,
1410
+ ],
1411
+ },
1412
+ ],
1413
+ outsSize: 4,
1414
+ registersSize: 4,
1415
+ tries: [],
1416
+ },
1417
+ method: {
1418
+ class: 'Ld/m;',
1419
+ name: 'dispatchKeyEvent',
1420
+ prototype: {
1421
+ parameters: [
1422
+ 'Landroid/view/KeyEvent;',
1423
+ ],
1424
+ returnType: 'Z',
1425
+ shorty: 'ZL',
1426
+ },
1427
+ },
1428
+ },
1429
+ {
1430
+ accessFlags: @Object {
1431
+ abstract: false,
1432
+ annotation: false,
1433
+ bridge: false,
1434
+ constructor: false,
1435
+ declaredSynchronized: false,
1436
+ enum: false,
1437
+ final: true,
1438
+ interface: false,
1439
+ native: false,
1440
+ private: false,
1441
+ protected: false,
1442
+ public: true,
1443
+ static: false,
1444
+ strict: false,
1445
+ synchronized: false,
1446
+ synthetic: false,
1447
+ transient: false,
1448
+ varargs: false,
1449
+ volatile: false,
1450
+ },
1451
+ code: {
1452
+ debugInfo: {
1453
+ bytecode: [
1454
+ {
1455
+ lineDiff: 23,
1456
+ type: 'advanceLine',
1457
+ },
1458
+ ],
1459
+ lineStart: 1,
1460
+ parameterNames: [],
1461
+ },
1462
+ insSize: 1,
1463
+ instructions: [
1464
+ {
1465
+ field: {
1466
+ class: 'Ld/m;',
1467
+ name: 'l',
1468
+ type: 'Ld/g;',
1469
+ },
1470
+ operation: 'iget-object',
1471
+ registers: [
1472
+ 0,
1473
+ 3,
1474
+ ],
1475
+ },
1476
+ {
1477
+ branchOffset: 19,
1478
+ operation: 'if-nez',
1479
+ registers: [
1480
+ 0,
1481
+ ],
1482
+ },
1483
+ {
1484
+ field: {
1485
+ class: 'Ld/f;',
1486
+ name: 'j',
1487
+ type: 'I',
1488
+ },
1489
+ operation: 'sget',
1490
+ registers: [
1491
+ 0,
1492
+ ],
1493
+ },
1494
+ {
1495
+ operation: 'new-instance',
1496
+ registers: [
1497
+ 0,
1498
+ ],
1499
+ type: 'Ld/g;',
1500
+ },
1501
+ {
1502
+ method: {
1503
+ class: 'Landroid/app/Dialog;',
1504
+ name: 'getContext',
1505
+ prototype: {
1506
+ parameters: [],
1507
+ returnType: 'Landroid/content/Context;',
1508
+ shorty: 'L',
1509
+ },
1510
+ },
1511
+ operation: 'invoke-virtual',
1512
+ registers: [
1513
+ 3,
1514
+ ],
1515
+ },
1516
+ {
1517
+ operation: 'move-result-object',
1518
+ registers: [
1519
+ 1,
1520
+ ],
1521
+ },
1522
+ {
1523
+ method: {
1524
+ class: 'Landroid/app/Dialog;',
1525
+ name: 'getWindow',
1526
+ prototype: {
1527
+ parameters: [],
1528
+ returnType: 'Landroid/view/Window;',
1529
+ shorty: 'L',
1530
+ },
1531
+ },
1532
+ operation: 'invoke-virtual',
1533
+ registers: [
1534
+ 3,
1535
+ ],
1536
+ },
1537
+ {
1538
+ operation: 'move-result-object',
1539
+ registers: [
1540
+ 2,
1541
+ ],
1542
+ },
1543
+ {
1544
+ method: {
1545
+ class: 'Ld/g;',
1546
+ name: '<init>',
1547
+ prototype: {
1548
+ parameters: [
1549
+ 'Landroid/content/Context;',
1550
+ 'Landroid/view/Window;',
1551
+ 'Ld/e;',
1552
+ 'Ljava/lang/Object;',
1553
+ ],
1554
+ returnType: 'V',
1555
+ shorty: 'VLLLL',
1556
+ },
1557
+ },
1558
+ operation: 'invoke-direct',
1559
+ registers: [
1560
+ 0,
1561
+ 1,
1562
+ 2,
1563
+ 3,
1564
+ 3,
1565
+ ],
1566
+ },
1567
+ {
1568
+ field: {
1569
+ class: 'Ld/m;',
1570
+ name: 'l',
1571
+ type: 'Ld/g;',
1572
+ },
1573
+ operation: 'iput-object',
1574
+ registers: [
1575
+ 0,
1576
+ 3,
1577
+ ],
1578
+ },
1579
+ {
1580
+ field: {
1581
+ class: 'Ld/m;',
1582
+ name: 'l',
1583
+ type: 'Ld/g;',
1584
+ },
1585
+ operation: 'iget-object',
1586
+ registers: [
1587
+ 0,
1588
+ 3,
1589
+ ],
1590
+ },
1591
+ {
1592
+ operation: 'return-object',
1593
+ registers: [
1594
+ 0,
1595
+ ],
1596
+ },
1597
+ ],
1598
+ outsSize: 5,
1599
+ registersSize: 4,
1600
+ tries: [],
1601
+ },
1602
+ method: {
1603
+ class: 'Ld/m;',
1604
+ name: 'f',
1605
+ prototype: {
1606
+ parameters: [],
1607
+ returnType: 'Ld/f;',
1608
+ shorty: 'L',
1609
+ },
1610
+ },
1611
+ },
1612
+ {
1613
+ accessFlags: @Object {
1614
+ abstract: false,
1615
+ annotation: false,
1616
+ bridge: false,
1617
+ constructor: false,
1618
+ declaredSynchronized: false,
1619
+ enum: false,
1620
+ final: true,
1621
+ interface: false,
1622
+ native: false,
1623
+ private: false,
1624
+ protected: false,
1625
+ public: true,
1626
+ static: false,
1627
+ strict: false,
1628
+ synchronized: false,
1629
+ synthetic: false,
1630
+ transient: false,
1631
+ varargs: false,
1632
+ volatile: false,
1633
+ },
1634
+ code: {
1635
+ debugInfo: undefined,
1636
+ insSize: 2,
1637
+ instructions: [
1638
+ {
1639
+ method: {
1640
+ class: 'Ld/m;',
1641
+ name: 'f',
1642
+ prototype: {
1643
+ parameters: [],
1644
+ returnType: 'Ld/f;',
1645
+ shorty: 'L',
1646
+ },
1647
+ },
1648
+ operation: 'invoke-virtual',
1649
+ registers: [
1650
+ 1,
1651
+ ],
1652
+ },
1653
+ {
1654
+ operation: 'move-result-object',
1655
+ registers: [
1656
+ 0,
1657
+ ],
1658
+ },
1659
+ {
1660
+ method: {
1661
+ class: 'Ld/f;',
1662
+ name: 'f',
1663
+ prototype: {
1664
+ parameters: [
1665
+ 'I',
1666
+ ],
1667
+ returnType: 'Landroid/view/View;',
1668
+ shorty: 'LI',
1669
+ },
1670
+ },
1671
+ operation: 'invoke-virtual',
1672
+ registers: [
1673
+ 0,
1674
+ 2,
1675
+ ],
1676
+ },
1677
+ {
1678
+ operation: 'move-result-object',
1679
+ registers: [
1680
+ 2,
1681
+ ],
1682
+ },
1683
+ {
1684
+ operation: 'return-object',
1685
+ registers: [
1686
+ 2,
1687
+ ],
1688
+ },
1689
+ ],
1690
+ outsSize: 2,
1691
+ registersSize: 3,
1692
+ tries: [],
1693
+ },
1694
+ method: {
1695
+ class: 'Ld/m;',
1696
+ name: 'findViewById',
1697
+ prototype: {
1698
+ parameters: [
1699
+ 'I',
1700
+ ],
1701
+ returnType: 'Landroid/view/View;',
1702
+ shorty: 'LI',
1703
+ },
1704
+ },
1705
+ },
1706
+ {
1707
+ accessFlags: @Object {
1708
+ abstract: false,
1709
+ annotation: false,
1710
+ bridge: false,
1711
+ constructor: false,
1712
+ declaredSynchronized: false,
1713
+ enum: false,
1714
+ final: true,
1715
+ interface: false,
1716
+ native: false,
1717
+ private: false,
1718
+ protected: false,
1719
+ public: true,
1720
+ static: false,
1721
+ strict: false,
1722
+ synchronized: false,
1723
+ synthetic: false,
1724
+ transient: false,
1725
+ varargs: false,
1726
+ volatile: false,
1727
+ },
1728
+ code: {
1729
+ debugInfo: undefined,
1730
+ insSize: 2,
1731
+ instructions: [
1732
+ {
1733
+ method: {
1734
+ class: 'Landroid/app/Dialog;',
1735
+ name: 'dispatchKeyEvent',
1736
+ prototype: {
1737
+ parameters: [
1738
+ 'Landroid/view/KeyEvent;',
1739
+ ],
1740
+ returnType: 'Z',
1741
+ shorty: 'ZL',
1742
+ },
1743
+ },
1744
+ operation: 'invoke-super',
1745
+ registers: [
1746
+ 0,
1747
+ 1,
1748
+ ],
1749
+ },
1750
+ {
1751
+ operation: 'move-result',
1752
+ registers: [
1753
+ 1,
1754
+ ],
1755
+ },
1756
+ {
1757
+ operation: 'return',
1758
+ registers: [
1759
+ 1,
1760
+ ],
1761
+ },
1762
+ ],
1763
+ outsSize: 2,
1764
+ registersSize: 2,
1765
+ tries: [],
1766
+ },
1767
+ method: {
1768
+ class: 'Ld/m;',
1769
+ name: 'g',
1770
+ prototype: {
1771
+ parameters: [
1772
+ 'Landroid/view/KeyEvent;',
1773
+ ],
1774
+ returnType: 'Z',
1775
+ shorty: 'ZL',
1776
+ },
1777
+ },
1778
+ },
1779
+ {
1780
+ accessFlags: @Object {
1781
+ abstract: false,
1782
+ annotation: false,
1783
+ bridge: false,
1784
+ constructor: false,
1785
+ declaredSynchronized: false,
1786
+ enum: false,
1787
+ final: true,
1788
+ interface: false,
1789
+ native: false,
1790
+ private: false,
1791
+ protected: false,
1792
+ public: true,
1793
+ static: false,
1794
+ strict: false,
1795
+ synchronized: false,
1796
+ synthetic: false,
1797
+ transient: false,
1798
+ varargs: false,
1799
+ volatile: false,
1800
+ },
1801
+ code: {
1802
+ debugInfo: undefined,
1803
+ insSize: 1,
1804
+ instructions: [
1805
+ {
1806
+ operation: 'return-void',
1807
+ },
1808
+ ],
1809
+ outsSize: 0,
1810
+ registersSize: 1,
1811
+ tries: [],
1812
+ },
1813
+ method: {
1814
+ class: 'Ld/m;',
1815
+ name: 'h',
1816
+ prototype: {
1817
+ parameters: [],
1818
+ returnType: 'V',
1819
+ shorty: 'V',
1820
+ },
1821
+ },
1822
+ },
1823
+ {
1824
+ accessFlags: @Object {
1825
+ abstract: false,
1826
+ annotation: false,
1827
+ bridge: false,
1828
+ constructor: false,
1829
+ declaredSynchronized: false,
1830
+ enum: false,
1831
+ final: true,
1832
+ interface: false,
1833
+ native: false,
1834
+ private: false,
1835
+ protected: false,
1836
+ public: true,
1837
+ static: false,
1838
+ strict: false,
1839
+ synchronized: false,
1840
+ synthetic: false,
1841
+ transient: false,
1842
+ varargs: false,
1843
+ volatile: false,
1844
+ },
1845
+ code: {
1846
+ debugInfo: undefined,
1847
+ insSize: 1,
1848
+ instructions: [
1849
+ {
1850
+ method: {
1851
+ class: 'Ld/m;',
1852
+ name: 'f',
1853
+ prototype: {
1854
+ parameters: [],
1855
+ returnType: 'Ld/f;',
1856
+ shorty: 'L',
1857
+ },
1858
+ },
1859
+ operation: 'invoke-virtual',
1860
+ registers: [
1861
+ 1,
1862
+ ],
1863
+ },
1864
+ {
1865
+ operation: 'move-result-object',
1866
+ registers: [
1867
+ 0,
1868
+ ],
1869
+ },
1870
+ {
1871
+ method: {
1872
+ class: 'Ld/f;',
1873
+ name: 'j',
1874
+ prototype: {
1875
+ parameters: [],
1876
+ returnType: 'V',
1877
+ shorty: 'V',
1878
+ },
1879
+ },
1880
+ operation: 'invoke-virtual',
1881
+ registers: [
1882
+ 0,
1883
+ ],
1884
+ },
1885
+ {
1886
+ operation: 'return-void',
1887
+ },
1888
+ ],
1889
+ outsSize: 1,
1890
+ registersSize: 2,
1891
+ tries: [],
1892
+ },
1893
+ method: {
1894
+ class: 'Ld/m;',
1895
+ name: 'invalidateOptionsMenu',
1896
+ prototype: {
1897
+ parameters: [],
1898
+ returnType: 'V',
1899
+ shorty: 'V',
1900
+ },
1901
+ },
1902
+ },
1903
+ {
1904
+ accessFlags: @Object {
1905
+ abstract: false,
1906
+ annotation: false,
1907
+ bridge: false,
1908
+ constructor: false,
1909
+ declaredSynchronized: false,
1910
+ enum: false,
1911
+ final: true,
1912
+ interface: false,
1913
+ native: false,
1914
+ private: false,
1915
+ protected: false,
1916
+ public: true,
1917
+ static: false,
1918
+ strict: false,
1919
+ synchronized: false,
1920
+ synthetic: false,
1921
+ transient: false,
1922
+ varargs: false,
1923
+ volatile: false,
1924
+ },
1925
+ code: {
1926
+ debugInfo: undefined,
1927
+ insSize: 1,
1928
+ instructions: [
1929
+ {
1930
+ operation: 'return-void',
1931
+ },
1932
+ ],
1933
+ outsSize: 0,
1934
+ registersSize: 1,
1935
+ tries: [],
1936
+ },
1937
+ method: {
1938
+ class: 'Ld/m;',
1939
+ name: 'n',
1940
+ prototype: {
1941
+ parameters: [],
1942
+ returnType: 'V',
1943
+ shorty: 'V',
1944
+ },
1945
+ },
1946
+ },
1947
+ {
1948
+ accessFlags: @Object {
1949
+ abstract: false,
1950
+ annotation: false,
1951
+ bridge: false,
1952
+ constructor: false,
1953
+ declaredSynchronized: false,
1954
+ enum: false,
1955
+ final: false,
1956
+ interface: false,
1957
+ native: false,
1958
+ private: false,
1959
+ protected: false,
1960
+ public: true,
1961
+ static: false,
1962
+ strict: false,
1963
+ synchronized: false,
1964
+ synthetic: false,
1965
+ transient: false,
1966
+ varargs: false,
1967
+ volatile: false,
1968
+ },
1969
+ code: {
1970
+ debugInfo: undefined,
1971
+ insSize: 2,
1972
+ instructions: [
1973
+ {
1974
+ method: {
1975
+ class: 'Ld/m;',
1976
+ name: 'f',
1977
+ prototype: {
1978
+ parameters: [],
1979
+ returnType: 'Ld/f;',
1980
+ shorty: 'L',
1981
+ },
1982
+ },
1983
+ operation: 'invoke-virtual',
1984
+ registers: [
1985
+ 1,
1986
+ ],
1987
+ },
1988
+ {
1989
+ operation: 'move-result-object',
1990
+ registers: [
1991
+ 0,
1992
+ ],
1993
+ },
1994
+ {
1995
+ method: {
1996
+ class: 'Ld/f;',
1997
+ name: 'i',
1998
+ prototype: {
1999
+ parameters: [],
2000
+ returnType: 'V',
2001
+ shorty: 'V',
2002
+ },
2003
+ },
2004
+ operation: 'invoke-virtual',
2005
+ registers: [
2006
+ 0,
2007
+ ],
2008
+ },
2009
+ {
2010
+ method: {
2011
+ class: 'Landroidx/activity/e;',
2012
+ name: 'onCreate',
2013
+ prototype: {
2014
+ parameters: [
2015
+ 'Landroid/os/Bundle;',
2016
+ ],
2017
+ returnType: 'V',
2018
+ shorty: 'VL',
2019
+ },
2020
+ },
2021
+ operation: 'invoke-super',
2022
+ registers: [
2023
+ 1,
2024
+ 2,
2025
+ ],
2026
+ },
2027
+ {
2028
+ method: {
2029
+ class: 'Ld/m;',
2030
+ name: 'f',
2031
+ prototype: {
2032
+ parameters: [],
2033
+ returnType: 'Ld/f;',
2034
+ shorty: 'L',
2035
+ },
2036
+ },
2037
+ operation: 'invoke-virtual',
2038
+ registers: [
2039
+ 1,
2040
+ ],
2041
+ },
2042
+ {
2043
+ operation: 'move-result-object',
2044
+ registers: [
2045
+ 2,
2046
+ ],
2047
+ },
2048
+ {
2049
+ method: {
2050
+ class: 'Ld/f;',
2051
+ name: 'l',
2052
+ prototype: {
2053
+ parameters: [],
2054
+ returnType: 'V',
2055
+ shorty: 'V',
2056
+ },
2057
+ },
2058
+ operation: 'invoke-virtual',
2059
+ registers: [
2060
+ 2,
2061
+ ],
2062
+ },
2063
+ {
2064
+ operation: 'return-void',
2065
+ },
2066
+ ],
2067
+ outsSize: 2,
2068
+ registersSize: 3,
2069
+ tries: [],
2070
+ },
2071
+ method: {
2072
+ class: 'Ld/m;',
2073
+ name: 'onCreate',
2074
+ prototype: {
2075
+ parameters: [
2076
+ 'Landroid/os/Bundle;',
2077
+ ],
2078
+ returnType: 'V',
2079
+ shorty: 'VL',
2080
+ },
2081
+ },
2082
+ },
2083
+ {
2084
+ accessFlags: @Object {
2085
+ abstract: false,
2086
+ annotation: false,
2087
+ bridge: false,
2088
+ constructor: false,
2089
+ declaredSynchronized: false,
2090
+ enum: false,
2091
+ final: true,
2092
+ interface: false,
2093
+ native: false,
2094
+ private: false,
2095
+ protected: false,
2096
+ public: true,
2097
+ static: false,
2098
+ strict: false,
2099
+ synchronized: false,
2100
+ synthetic: false,
2101
+ transient: false,
2102
+ varargs: false,
2103
+ volatile: false,
2104
+ },
2105
+ code: {
2106
+ debugInfo: undefined,
2107
+ insSize: 1,
2108
+ instructions: [
2109
+ {
2110
+ method: {
2111
+ class: 'Landroidx/activity/e;',
2112
+ name: 'onStop',
2113
+ prototype: {
2114
+ parameters: [],
2115
+ returnType: 'V',
2116
+ shorty: 'V',
2117
+ },
2118
+ },
2119
+ operation: 'invoke-super',
2120
+ registers: [
2121
+ 1,
2122
+ ],
2123
+ },
2124
+ {
2125
+ method: {
2126
+ class: 'Ld/m;',
2127
+ name: 'f',
2128
+ prototype: {
2129
+ parameters: [],
2130
+ returnType: 'Ld/f;',
2131
+ shorty: 'L',
2132
+ },
2133
+ },
2134
+ operation: 'invoke-virtual',
2135
+ registers: [
2136
+ 1,
2137
+ ],
2138
+ },
2139
+ {
2140
+ operation: 'move-result-object',
2141
+ registers: [
2142
+ 0,
2143
+ ],
2144
+ },
2145
+ {
2146
+ method: {
2147
+ class: 'Ld/f;',
2148
+ name: 'p',
2149
+ prototype: {
2150
+ parameters: [],
2151
+ returnType: 'V',
2152
+ shorty: 'V',
2153
+ },
2154
+ },
2155
+ operation: 'invoke-virtual',
2156
+ registers: [
2157
+ 0,
2158
+ ],
2159
+ },
2160
+ {
2161
+ operation: 'return-void',
2162
+ },
2163
+ ],
2164
+ outsSize: 1,
2165
+ registersSize: 2,
2166
+ tries: [],
2167
+ },
2168
+ method: {
2169
+ class: 'Ld/m;',
2170
+ name: 'onStop',
2171
+ prototype: {
2172
+ parameters: [],
2173
+ returnType: 'V',
2174
+ shorty: 'V',
2175
+ },
2176
+ },
2177
+ },
2178
+ {
2179
+ accessFlags: @Object {
2180
+ abstract: false,
2181
+ annotation: false,
2182
+ bridge: false,
2183
+ constructor: false,
2184
+ declaredSynchronized: false,
2185
+ enum: false,
2186
+ final: true,
2187
+ interface: false,
2188
+ native: false,
2189
+ private: false,
2190
+ protected: false,
2191
+ public: true,
2192
+ static: false,
2193
+ strict: false,
2194
+ synchronized: false,
2195
+ synthetic: false,
2196
+ transient: false,
2197
+ varargs: false,
2198
+ volatile: false,
2199
+ },
2200
+ code: {
2201
+ debugInfo: undefined,
2202
+ insSize: 1,
2203
+ instructions: [
2204
+ {
2205
+ operation: 'return-void',
2206
+ },
2207
+ ],
2208
+ outsSize: 0,
2209
+ registersSize: 1,
2210
+ tries: [],
2211
+ },
2212
+ method: {
2213
+ class: 'Ld/m;',
2214
+ name: 's',
2215
+ prototype: {
2216
+ parameters: [],
2217
+ returnType: 'V',
2218
+ shorty: 'V',
2219
+ },
2220
+ },
2221
+ },
2222
+ {
2223
+ accessFlags: @Object {
2224
+ abstract: false,
2225
+ annotation: false,
2226
+ bridge: false,
2227
+ constructor: false,
2228
+ declaredSynchronized: false,
2229
+ enum: false,
2230
+ final: true,
2231
+ interface: false,
2232
+ native: false,
2233
+ private: false,
2234
+ protected: false,
2235
+ public: true,
2236
+ static: false,
2237
+ strict: false,
2238
+ synchronized: false,
2239
+ synthetic: false,
2240
+ transient: false,
2241
+ varargs: false,
2242
+ volatile: false,
2243
+ },
2244
+ code: {
2245
+ debugInfo: undefined,
2246
+ insSize: 2,
2247
+ instructions: [
2248
+ {
2249
+ method: {
2250
+ class: 'Ld/m;',
2251
+ name: 'f',
2252
+ prototype: {
2253
+ parameters: [],
2254
+ returnType: 'Ld/f;',
2255
+ shorty: 'L',
2256
+ },
2257
+ },
2258
+ operation: 'invoke-virtual',
2259
+ registers: [
2260
+ 1,
2261
+ ],
2262
+ },
2263
+ {
2264
+ operation: 'move-result-object',
2265
+ registers: [
2266
+ 0,
2267
+ ],
2268
+ },
2269
+ {
2270
+ method: {
2271
+ class: 'Ld/f;',
2272
+ name: 's',
2273
+ prototype: {
2274
+ parameters: [
2275
+ 'I',
2276
+ ],
2277
+ returnType: 'V',
2278
+ shorty: 'VI',
2279
+ },
2280
+ },
2281
+ operation: 'invoke-virtual',
2282
+ registers: [
2283
+ 0,
2284
+ 2,
2285
+ ],
2286
+ },
2287
+ {
2288
+ operation: 'return-void',
2289
+ },
2290
+ ],
2291
+ outsSize: 2,
2292
+ registersSize: 3,
2293
+ tries: [],
2294
+ },
2295
+ method: {
2296
+ class: 'Ld/m;',
2297
+ name: 'setContentView',
2298
+ prototype: {
2299
+ parameters: [
2300
+ 'I',
2301
+ ],
2302
+ returnType: 'V',
2303
+ shorty: 'VI',
2304
+ },
2305
+ },
2306
+ },
2307
+ {
2308
+ accessFlags: @Object {
2309
+ abstract: false,
2310
+ annotation: false,
2311
+ bridge: false,
2312
+ constructor: false,
2313
+ declaredSynchronized: false,
2314
+ enum: false,
2315
+ final: true,
2316
+ interface: false,
2317
+ native: false,
2318
+ private: false,
2319
+ protected: false,
2320
+ public: true,
2321
+ static: false,
2322
+ strict: false,
2323
+ synchronized: false,
2324
+ synthetic: false,
2325
+ transient: false,
2326
+ varargs: false,
2327
+ volatile: false,
2328
+ },
2329
+ code: {
2330
+ debugInfo: undefined,
2331
+ insSize: 2,
2332
+ instructions: [
2333
+ {
2334
+ method: {
2335
+ class: 'Ld/m;',
2336
+ name: 'f',
2337
+ prototype: {
2338
+ parameters: [],
2339
+ returnType: 'Ld/f;',
2340
+ shorty: 'L',
2341
+ },
2342
+ },
2343
+ operation: 'invoke-virtual',
2344
+ registers: [
2345
+ 1,
2346
+ ],
2347
+ },
2348
+ {
2349
+ operation: 'move-result-object',
2350
+ registers: [
2351
+ 0,
2352
+ ],
2353
+ },
2354
+ {
2355
+ method: {
2356
+ class: 'Ld/f;',
2357
+ name: 't',
2358
+ prototype: {
2359
+ parameters: [
2360
+ 'Landroid/view/View;',
2361
+ ],
2362
+ returnType: 'V',
2363
+ shorty: 'VL',
2364
+ },
2365
+ },
2366
+ operation: 'invoke-virtual',
2367
+ registers: [
2368
+ 0,
2369
+ 2,
2370
+ ],
2371
+ },
2372
+ {
2373
+ operation: 'return-void',
2374
+ },
2375
+ ],
2376
+ outsSize: 2,
2377
+ registersSize: 3,
2378
+ tries: [],
2379
+ },
2380
+ method: {
2381
+ class: 'Ld/m;',
2382
+ name: 'setContentView',
2383
+ prototype: {
2384
+ parameters: [
2385
+ 'Landroid/view/View;',
2386
+ ],
2387
+ returnType: 'V',
2388
+ shorty: 'VL',
2389
+ },
2390
+ },
2391
+ },
2392
+ {
2393
+ accessFlags: @Object {
2394
+ abstract: false,
2395
+ annotation: false,
2396
+ bridge: false,
2397
+ constructor: false,
2398
+ declaredSynchronized: false,
2399
+ enum: false,
2400
+ final: true,
2401
+ interface: false,
2402
+ native: false,
2403
+ private: false,
2404
+ protected: false,
2405
+ public: true,
2406
+ static: false,
2407
+ strict: false,
2408
+ synchronized: false,
2409
+ synthetic: false,
2410
+ transient: false,
2411
+ varargs: false,
2412
+ volatile: false,
2413
+ },
2414
+ code: {
2415
+ debugInfo: undefined,
2416
+ insSize: 3,
2417
+ instructions: [
2418
+ {
2419
+ method: {
2420
+ class: 'Ld/m;',
2421
+ name: 'f',
2422
+ prototype: {
2423
+ parameters: [],
2424
+ returnType: 'Ld/f;',
2425
+ shorty: 'L',
2426
+ },
2427
+ },
2428
+ operation: 'invoke-virtual',
2429
+ registers: [
2430
+ 1,
2431
+ ],
2432
+ },
2433
+ {
2434
+ operation: 'move-result-object',
2435
+ registers: [
2436
+ 0,
2437
+ ],
2438
+ },
2439
+ {
2440
+ method: {
2441
+ class: 'Ld/f;',
2442
+ name: 'u',
2443
+ prototype: {
2444
+ parameters: [
2445
+ 'Landroid/view/View;',
2446
+ 'Landroid/view/ViewGroup$LayoutParams;',
2447
+ ],
2448
+ returnType: 'V',
2449
+ shorty: 'VLL',
2450
+ },
2451
+ },
2452
+ operation: 'invoke-virtual',
2453
+ registers: [
2454
+ 0,
2455
+ 2,
2456
+ 3,
2457
+ ],
2458
+ },
2459
+ {
2460
+ operation: 'return-void',
2461
+ },
2462
+ ],
2463
+ outsSize: 3,
2464
+ registersSize: 4,
2465
+ tries: [],
2466
+ },
2467
+ method: {
2468
+ class: 'Ld/m;',
2469
+ name: 'setContentView',
2470
+ prototype: {
2471
+ parameters: [
2472
+ 'Landroid/view/View;',
2473
+ 'Landroid/view/ViewGroup$LayoutParams;',
2474
+ ],
2475
+ returnType: 'V',
2476
+ shorty: 'VLL',
2477
+ },
2478
+ },
2479
+ },
2480
+ {
2481
+ accessFlags: @Object {
2482
+ abstract: false,
2483
+ annotation: false,
2484
+ bridge: false,
2485
+ constructor: false,
2486
+ declaredSynchronized: false,
2487
+ enum: false,
2488
+ final: true,
2489
+ interface: false,
2490
+ native: false,
2491
+ private: false,
2492
+ protected: false,
2493
+ public: true,
2494
+ static: false,
2495
+ strict: false,
2496
+ synchronized: false,
2497
+ synthetic: false,
2498
+ transient: false,
2499
+ varargs: false,
2500
+ volatile: false,
2501
+ },
2502
+ code: {
2503
+ debugInfo: undefined,
2504
+ insSize: 2,
2505
+ instructions: [
2506
+ {
2507
+ method: {
2508
+ class: 'Landroid/app/Dialog;',
2509
+ name: 'setTitle',
2510
+ prototype: {
2511
+ parameters: [
2512
+ 'I',
2513
+ ],
2514
+ returnType: 'V',
2515
+ shorty: 'VI',
2516
+ },
2517
+ },
2518
+ operation: 'invoke-super',
2519
+ registers: [
2520
+ 2,
2521
+ 3,
2522
+ ],
2523
+ },
2524
+ {
2525
+ method: {
2526
+ class: 'Ld/m;',
2527
+ name: 'f',
2528
+ prototype: {
2529
+ parameters: [],
2530
+ returnType: 'Ld/f;',
2531
+ shorty: 'L',
2532
+ },
2533
+ },
2534
+ operation: 'invoke-virtual',
2535
+ registers: [
2536
+ 2,
2537
+ ],
2538
+ },
2539
+ {
2540
+ operation: 'move-result-object',
2541
+ registers: [
2542
+ 0,
2543
+ ],
2544
+ },
2545
+ {
2546
+ method: {
2547
+ class: 'Landroid/app/Dialog;',
2548
+ name: 'getContext',
2549
+ prototype: {
2550
+ parameters: [],
2551
+ returnType: 'Landroid/content/Context;',
2552
+ shorty: 'L',
2553
+ },
2554
+ },
2555
+ operation: 'invoke-virtual',
2556
+ registers: [
2557
+ 2,
2558
+ ],
2559
+ },
2560
+ {
2561
+ operation: 'move-result-object',
2562
+ registers: [
2563
+ 1,
2564
+ ],
2565
+ },
2566
+ {
2567
+ method: {
2568
+ class: 'Landroid/content/Context;',
2569
+ name: 'getString',
2570
+ prototype: {
2571
+ parameters: [
2572
+ 'I',
2573
+ ],
2574
+ returnType: 'Ljava/lang/String;',
2575
+ shorty: 'LI',
2576
+ },
2577
+ },
2578
+ operation: 'invoke-virtual',
2579
+ registers: [
2580
+ 1,
2581
+ 3,
2582
+ ],
2583
+ },
2584
+ {
2585
+ operation: 'move-result-object',
2586
+ registers: [
2587
+ 3,
2588
+ ],
2589
+ },
2590
+ {
2591
+ method: {
2592
+ class: 'Ld/f;',
2593
+ name: 'w',
2594
+ prototype: {
2595
+ parameters: [
2596
+ 'Ljava/lang/CharSequence;',
2597
+ ],
2598
+ returnType: 'V',
2599
+ shorty: 'VL',
2600
+ },
2601
+ },
2602
+ operation: 'invoke-virtual',
2603
+ registers: [
2604
+ 0,
2605
+ 3,
2606
+ ],
2607
+ },
2608
+ {
2609
+ operation: 'return-void',
2610
+ },
2611
+ ],
2612
+ outsSize: 2,
2613
+ registersSize: 4,
2614
+ tries: [],
2615
+ },
2616
+ method: {
2617
+ class: 'Ld/m;',
2618
+ name: 'setTitle',
2619
+ prototype: {
2620
+ parameters: [
2621
+ 'I',
2622
+ ],
2623
+ returnType: 'V',
2624
+ shorty: 'VI',
2625
+ },
2626
+ },
2627
+ },
2628
+ {
2629
+ accessFlags: @Object {
2630
+ abstract: false,
2631
+ annotation: false,
2632
+ bridge: false,
2633
+ constructor: false,
2634
+ declaredSynchronized: false,
2635
+ enum: false,
2636
+ final: false,
2637
+ interface: false,
2638
+ native: false,
2639
+ private: false,
2640
+ protected: false,
2641
+ public: true,
2642
+ static: false,
2643
+ strict: false,
2644
+ synchronized: false,
2645
+ synthetic: false,
2646
+ transient: false,
2647
+ varargs: false,
2648
+ volatile: false,
2649
+ },
2650
+ code: {
2651
+ debugInfo: undefined,
2652
+ insSize: 2,
2653
+ instructions: [
2654
+ {
2655
+ method: {
2656
+ class: 'Landroid/app/Dialog;',
2657
+ name: 'setTitle',
2658
+ prototype: {
2659
+ parameters: [
2660
+ 'Ljava/lang/CharSequence;',
2661
+ ],
2662
+ returnType: 'V',
2663
+ shorty: 'VL',
2664
+ },
2665
+ },
2666
+ operation: 'invoke-super',
2667
+ registers: [
2668
+ 1,
2669
+ 2,
2670
+ ],
2671
+ },
2672
+ {
2673
+ method: {
2674
+ class: 'Ld/m;',
2675
+ name: 'f',
2676
+ prototype: {
2677
+ parameters: [],
2678
+ returnType: 'Ld/f;',
2679
+ shorty: 'L',
2680
+ },
2681
+ },
2682
+ operation: 'invoke-virtual',
2683
+ registers: [
2684
+ 1,
2685
+ ],
2686
+ },
2687
+ {
2688
+ operation: 'move-result-object',
2689
+ registers: [
2690
+ 0,
2691
+ ],
2692
+ },
2693
+ {
2694
+ method: {
2695
+ class: 'Ld/f;',
2696
+ name: 'w',
2697
+ prototype: {
2698
+ parameters: [
2699
+ 'Ljava/lang/CharSequence;',
2700
+ ],
2701
+ returnType: 'V',
2702
+ shorty: 'VL',
2703
+ },
2704
+ },
2705
+ operation: 'invoke-virtual',
2706
+ registers: [
2707
+ 0,
2708
+ 2,
2709
+ ],
2710
+ },
2711
+ {
2712
+ operation: 'return-void',
2713
+ },
2714
+ ],
2715
+ outsSize: 2,
2716
+ registersSize: 3,
2717
+ tries: [],
2718
+ },
2719
+ method: {
2720
+ class: 'Ld/m;',
2721
+ name: 'setTitle',
2722
+ prototype: {
2723
+ parameters: [
2724
+ 'Ljava/lang/CharSequence;',
2725
+ ],
2726
+ returnType: 'V',
2727
+ shorty: 'VL',
2728
+ },
2729
+ },
2730
+ },
2731
+ ],
2732
+ },
2733
+ interfaces: [
2734
+ 'Ld/e;',
2735
+ ],
2736
+ sourceFile: 'SourceFile',
2737
+ staticValues: [],
2738
+ superclass: 'Landroidx/activity/e;',
2739
+ }
2740
+
2741
+ ## smali from dex bafybeibbupm7uzhuq4pa674rb2amxsenbdaoijigmaf4onaodaql4mh7yy com/journeyapps/barcodescanner/CaptureActivity
2742
+
2743
+ > Snapshot 1
2744
+
2745
+ {
2746
+ accessFlags: @Object {
2747
+ abstract: false,
2748
+ annotation: false,
2749
+ bridge: false,
2750
+ constructor: false,
2751
+ declaredSynchronized: false,
2752
+ enum: false,
2753
+ final: false,
2754
+ interface: false,
2755
+ native: false,
2756
+ private: false,
2757
+ protected: false,
2758
+ public: true,
2759
+ static: false,
2760
+ strict: false,
2761
+ synchronized: false,
2762
+ synthetic: false,
2763
+ transient: false,
2764
+ varargs: false,
2765
+ volatile: false,
2766
+ },
2767
+ annotations: undefined,
2768
+ class: 'Lcom/journeyapps/barcodescanner/CaptureActivity;',
2769
+ classData: {
2770
+ directMethods: [
2771
+ {
2772
+ accessFlags: @Object {
2773
+ abstract: false,
2774
+ annotation: false,
2775
+ bridge: false,
2776
+ constructor: true,
2777
+ declaredSynchronized: false,
2778
+ enum: false,
2779
+ final: false,
2780
+ interface: false,
2781
+ native: false,
2782
+ private: false,
2783
+ protected: false,
2784
+ public: true,
2785
+ static: false,
2786
+ strict: false,
2787
+ synchronized: false,
2788
+ synthetic: false,
2789
+ transient: false,
2790
+ varargs: false,
2791
+ volatile: false,
2792
+ },
2793
+ code: {
2794
+ debugInfo: {
2795
+ bytecode: [
2796
+ {
2797
+ type: 'special',
2798
+ value: 14,
2799
+ },
2800
+ ],
2801
+ lineStart: 13,
2802
+ parameterNames: [],
2803
+ },
2804
+ insSize: 1,
2805
+ instructions: [
2806
+ {
2807
+ method: {
2808
+ class: 'Landroid/app/Activity;',
2809
+ name: '<init>',
2810
+ prototype: {
2811
+ parameters: [],
2812
+ returnType: 'V',
2813
+ shorty: 'V',
2814
+ },
2815
+ },
2816
+ operation: 'invoke-direct',
2817
+ registers: [
2818
+ 0,
2819
+ ],
2820
+ },
2821
+ {
2822
+ operation: 'return-void',
2823
+ },
2824
+ ],
2825
+ outsSize: 1,
2826
+ registersSize: 1,
2827
+ tries: [],
2828
+ },
2829
+ method: {
2830
+ class: 'Lcom/journeyapps/barcodescanner/CaptureActivity;',
2831
+ name: '<init>',
2832
+ prototype: {
2833
+ parameters: [],
2834
+ returnType: 'V',
2835
+ shorty: 'V',
2836
+ },
2837
+ },
2838
+ },
2839
+ ],
2840
+ instanceFields: [
2841
+ {
2842
+ accessFlags: @Object {
2843
+ abstract: false,
2844
+ annotation: false,
2845
+ bridge: false,
2846
+ constructor: false,
2847
+ declaredSynchronized: false,
2848
+ enum: false,
2849
+ final: false,
2850
+ interface: false,
2851
+ native: false,
2852
+ private: true,
2853
+ protected: false,
2854
+ public: false,
2855
+ static: false,
2856
+ strict: false,
2857
+ synchronized: false,
2858
+ synthetic: false,
2859
+ transient: false,
2860
+ varargs: false,
2861
+ volatile: false,
2862
+ },
2863
+ field: {
2864
+ class: 'Lcom/journeyapps/barcodescanner/CaptureActivity;',
2865
+ name: 'barcodeScannerView',
2866
+ type: 'Lcom/journeyapps/barcodescanner/DecoratedBarcodeView;',
2867
+ },
2868
+ },
2869
+ {
2870
+ accessFlags: @Object {
2871
+ abstract: false,
2872
+ annotation: false,
2873
+ bridge: false,
2874
+ constructor: false,
2875
+ declaredSynchronized: false,
2876
+ enum: false,
2877
+ final: false,
2878
+ interface: false,
2879
+ native: false,
2880
+ private: true,
2881
+ protected: false,
2882
+ public: false,
2883
+ static: false,
2884
+ strict: false,
2885
+ synchronized: false,
2886
+ synthetic: false,
2887
+ transient: false,
2888
+ varargs: false,
2889
+ volatile: false,
2890
+ },
2891
+ field: {
2892
+ class: 'Lcom/journeyapps/barcodescanner/CaptureActivity;',
2893
+ name: 'capture',
2894
+ type: 'Lcom/journeyapps/barcodescanner/CaptureManager;',
2895
+ },
2896
+ },
2897
+ ],
2898
+ staticFields: [],
2899
+ virtualMethods: [
2900
+ {
2901
+ accessFlags: @Object {
2902
+ abstract: false,
2903
+ annotation: false,
2904
+ bridge: false,
2905
+ constructor: false,
2906
+ declaredSynchronized: false,
2907
+ enum: false,
2908
+ final: false,
2909
+ interface: false,
2910
+ native: false,
2911
+ private: false,
2912
+ protected: true,
2913
+ public: false,
2914
+ static: false,
2915
+ strict: false,
2916
+ synchronized: false,
2917
+ synthetic: false,
2918
+ transient: false,
2919
+ varargs: false,
2920
+ volatile: false,
2921
+ },
2922
+ code: {
2923
+ debugInfo: {
2924
+ bytecode: [
2925
+ {
2926
+ type: 'special',
2927
+ value: 15,
2928
+ },
2929
+ ],
2930
+ lineStart: 34,
2931
+ parameterNames: [],
2932
+ },
2933
+ insSize: 1,
2934
+ instructions: [
2935
+ {
2936
+ field: {
2937
+ class: 'Lcom/google/zxing/client/android/R$layout;',
2938
+ name: 'zxing_capture',
2939
+ type: 'I',
2940
+ },
2941
+ operation: 'sget',
2942
+ registers: [
2943
+ 0,
2944
+ ],
2945
+ },
2946
+ {
2947
+ method: {
2948
+ class: 'Landroid/app/Activity;',
2949
+ name: 'setContentView',
2950
+ prototype: {
2951
+ parameters: [
2952
+ 'I',
2953
+ ],
2954
+ returnType: 'V',
2955
+ shorty: 'VI',
2956
+ },
2957
+ },
2958
+ operation: 'invoke-virtual',
2959
+ registers: [
2960
+ 1,
2961
+ 0,
2962
+ ],
2963
+ },
2964
+ {
2965
+ field: {
2966
+ class: 'Lcom/google/zxing/client/android/R$id;',
2967
+ name: 'zxing_barcode_scanner',
2968
+ type: 'I',
2969
+ },
2970
+ operation: 'sget',
2971
+ registers: [
2972
+ 0,
2973
+ ],
2974
+ },
2975
+ {
2976
+ method: {
2977
+ class: 'Landroid/app/Activity;',
2978
+ name: 'findViewById',
2979
+ prototype: {
2980
+ parameters: [
2981
+ 'I',
2982
+ ],
2983
+ returnType: 'Landroid/view/View;',
2984
+ shorty: 'LI',
2985
+ },
2986
+ },
2987
+ operation: 'invoke-virtual',
2988
+ registers: [
2989
+ 1,
2990
+ 0,
2991
+ ],
2992
+ },
2993
+ {
2994
+ operation: 'move-result-object',
2995
+ registers: [
2996
+ 0,
2997
+ ],
2998
+ },
2999
+ {
3000
+ operation: 'check-cast',
3001
+ registers: [
3002
+ 0,
3003
+ ],
3004
+ type: 'Lcom/journeyapps/barcodescanner/DecoratedBarcodeView;',
3005
+ },
3006
+ {
3007
+ operation: 'return-object',
3008
+ registers: [
3009
+ 0,
3010
+ ],
3011
+ },
3012
+ ],
3013
+ outsSize: 2,
3014
+ registersSize: 2,
3015
+ tries: [],
3016
+ },
3017
+ method: {
3018
+ class: 'Lcom/journeyapps/barcodescanner/CaptureActivity;',
3019
+ name: 'initializeContent',
3020
+ prototype: {
3021
+ parameters: [],
3022
+ returnType: 'Lcom/journeyapps/barcodescanner/DecoratedBarcodeView;',
3023
+ shorty: 'L',
3024
+ },
3025
+ },
3026
+ },
3027
+ {
3028
+ accessFlags: @Object {
3029
+ abstract: false,
3030
+ annotation: false,
3031
+ bridge: false,
3032
+ constructor: false,
3033
+ declaredSynchronized: false,
3034
+ enum: false,
3035
+ final: false,
3036
+ interface: false,
3037
+ native: false,
3038
+ private: false,
3039
+ protected: true,
3040
+ public: false,
3041
+ static: false,
3042
+ strict: false,
3043
+ synchronized: false,
3044
+ synthetic: false,
3045
+ transient: false,
3046
+ varargs: false,
3047
+ volatile: false,
3048
+ },
3049
+ code: {
3050
+ debugInfo: {
3051
+ bytecode: [
3052
+ {
3053
+ type: 'special',
3054
+ value: 20,
3055
+ },
3056
+ ],
3057
+ lineStart: 19,
3058
+ parameterNames: [
3059
+ undefined,
3060
+ ],
3061
+ },
3062
+ insSize: 2,
3063
+ instructions: [
3064
+ {
3065
+ method: {
3066
+ class: 'Landroid/app/Activity;',
3067
+ name: 'onCreate',
3068
+ prototype: {
3069
+ parameters: [
3070
+ 'Landroid/os/Bundle;',
3071
+ ],
3072
+ returnType: 'V',
3073
+ shorty: 'VL',
3074
+ },
3075
+ },
3076
+ operation: 'invoke-super',
3077
+ registers: [
3078
+ 2,
3079
+ 3,
3080
+ ],
3081
+ },
3082
+ {
3083
+ method: {
3084
+ class: 'Lcom/journeyapps/barcodescanner/CaptureActivity;',
3085
+ name: 'initializeContent',
3086
+ prototype: {
3087
+ parameters: [],
3088
+ returnType: 'Lcom/journeyapps/barcodescanner/DecoratedBarcodeView;',
3089
+ shorty: 'L',
3090
+ },
3091
+ },
3092
+ operation: 'invoke-virtual',
3093
+ registers: [
3094
+ 2,
3095
+ ],
3096
+ },
3097
+ {
3098
+ operation: 'move-result-object',
3099
+ registers: [
3100
+ 0,
3101
+ ],
3102
+ },
3103
+ {
3104
+ field: {
3105
+ class: 'Lcom/journeyapps/barcodescanner/CaptureActivity;',
3106
+ name: 'barcodeScannerView',
3107
+ type: 'Lcom/journeyapps/barcodescanner/DecoratedBarcodeView;',
3108
+ },
3109
+ operation: 'iput-object',
3110
+ registers: [
3111
+ 0,
3112
+ 2,
3113
+ ],
3114
+ },
3115
+ {
3116
+ operation: 'new-instance',
3117
+ registers: [
3118
+ 0,
3119
+ ],
3120
+ type: 'Lcom/journeyapps/barcodescanner/CaptureManager;',
3121
+ },
3122
+ {
3123
+ field: {
3124
+ class: 'Lcom/journeyapps/barcodescanner/CaptureActivity;',
3125
+ name: 'barcodeScannerView',
3126
+ type: 'Lcom/journeyapps/barcodescanner/DecoratedBarcodeView;',
3127
+ },
3128
+ operation: 'iget-object',
3129
+ registers: [
3130
+ 1,
3131
+ 2,
3132
+ ],
3133
+ },
3134
+ {
3135
+ method: {
3136
+ class: 'Lcom/journeyapps/barcodescanner/CaptureManager;',
3137
+ name: '<init>',
3138
+ prototype: {
3139
+ parameters: [
3140
+ 'Landroid/app/Activity;',
3141
+ 'Lcom/journeyapps/barcodescanner/DecoratedBarcodeView;',
3142
+ ],
3143
+ returnType: 'V',
3144
+ shorty: 'VLL',
3145
+ },
3146
+ },
3147
+ operation: 'invoke-direct',
3148
+ registers: [
3149
+ 0,
3150
+ 2,
3151
+ 1,
3152
+ ],
3153
+ },
3154
+ {
3155
+ field: {
3156
+ class: 'Lcom/journeyapps/barcodescanner/CaptureActivity;',
3157
+ name: 'capture',
3158
+ type: 'Lcom/journeyapps/barcodescanner/CaptureManager;',
3159
+ },
3160
+ operation: 'iput-object',
3161
+ registers: [
3162
+ 0,
3163
+ 2,
3164
+ ],
3165
+ },
3166
+ {
3167
+ method: {
3168
+ class: 'Landroid/app/Activity;',
3169
+ name: 'getIntent',
3170
+ prototype: {
3171
+ parameters: [],
3172
+ returnType: 'Landroid/content/Intent;',
3173
+ shorty: 'L',
3174
+ },
3175
+ },
3176
+ operation: 'invoke-virtual',
3177
+ registers: [
3178
+ 2,
3179
+ ],
3180
+ },
3181
+ {
3182
+ operation: 'move-result-object',
3183
+ registers: [
3184
+ 1,
3185
+ ],
3186
+ },
3187
+ {
3188
+ method: {
3189
+ class: 'Lcom/journeyapps/barcodescanner/CaptureManager;',
3190
+ name: 'initializeFromIntent',
3191
+ prototype: {
3192
+ parameters: [
3193
+ 'Landroid/content/Intent;',
3194
+ 'Landroid/os/Bundle;',
3195
+ ],
3196
+ returnType: 'V',
3197
+ shorty: 'VLL',
3198
+ },
3199
+ },
3200
+ operation: 'invoke-virtual',
3201
+ registers: [
3202
+ 0,
3203
+ 1,
3204
+ 3,
3205
+ ],
3206
+ },
3207
+ {
3208
+ field: {
3209
+ class: 'Lcom/journeyapps/barcodescanner/CaptureActivity;',
3210
+ name: 'capture',
3211
+ type: 'Lcom/journeyapps/barcodescanner/CaptureManager;',
3212
+ },
3213
+ operation: 'iget-object',
3214
+ registers: [
3215
+ 3,
3216
+ 2,
3217
+ ],
3218
+ },
3219
+ {
3220
+ method: {
3221
+ class: 'Lcom/journeyapps/barcodescanner/CaptureManager;',
3222
+ name: 'decode',
3223
+ prototype: {
3224
+ parameters: [],
3225
+ returnType: 'V',
3226
+ shorty: 'V',
3227
+ },
3228
+ },
3229
+ operation: 'invoke-virtual',
3230
+ registers: [
3231
+ 3,
3232
+ ],
3233
+ },
3234
+ {
3235
+ operation: 'return-void',
3236
+ },
3237
+ ],
3238
+ outsSize: 3,
3239
+ registersSize: 4,
3240
+ tries: [],
3241
+ },
3242
+ method: {
3243
+ class: 'Lcom/journeyapps/barcodescanner/CaptureActivity;',
3244
+ name: 'onCreate',
3245
+ prototype: {
3246
+ parameters: [
3247
+ 'Landroid/os/Bundle;',
3248
+ ],
3249
+ returnType: 'V',
3250
+ shorty: 'VL',
3251
+ },
3252
+ },
3253
+ },
3254
+ {
3255
+ accessFlags: @Object {
3256
+ abstract: false,
3257
+ annotation: false,
3258
+ bridge: false,
3259
+ constructor: false,
3260
+ declaredSynchronized: false,
3261
+ enum: false,
3262
+ final: false,
3263
+ interface: false,
3264
+ native: false,
3265
+ private: false,
3266
+ protected: true,
3267
+ public: false,
3268
+ static: false,
3269
+ strict: false,
3270
+ synchronized: false,
3271
+ synthetic: false,
3272
+ transient: false,
3273
+ varargs: false,
3274
+ volatile: false,
3275
+ },
3276
+ code: {
3277
+ debugInfo: {
3278
+ bytecode: [
3279
+ {
3280
+ type: 'special',
3281
+ value: 15,
3282
+ },
3283
+ ],
3284
+ lineStart: 52,
3285
+ parameterNames: [],
3286
+ },
3287
+ insSize: 1,
3288
+ instructions: [
3289
+ {
3290
+ method: {
3291
+ class: 'Landroid/app/Activity;',
3292
+ name: 'onDestroy',
3293
+ prototype: {
3294
+ parameters: [],
3295
+ returnType: 'V',
3296
+ shorty: 'V',
3297
+ },
3298
+ },
3299
+ operation: 'invoke-super',
3300
+ registers: [
3301
+ 1,
3302
+ ],
3303
+ },
3304
+ {
3305
+ field: {
3306
+ class: 'Lcom/journeyapps/barcodescanner/CaptureActivity;',
3307
+ name: 'capture',
3308
+ type: 'Lcom/journeyapps/barcodescanner/CaptureManager;',
3309
+ },
3310
+ operation: 'iget-object',
3311
+ registers: [
3312
+ 0,
3313
+ 1,
3314
+ ],
3315
+ },
3316
+ {
3317
+ method: {
3318
+ class: 'Lcom/journeyapps/barcodescanner/CaptureManager;',
3319
+ name: 'onDestroy',
3320
+ prototype: {
3321
+ parameters: [],
3322
+ returnType: 'V',
3323
+ shorty: 'V',
3324
+ },
3325
+ },
3326
+ operation: 'invoke-virtual',
3327
+ registers: [
3328
+ 0,
3329
+ ],
3330
+ },
3331
+ {
3332
+ operation: 'return-void',
3333
+ },
3334
+ ],
3335
+ outsSize: 1,
3336
+ registersSize: 2,
3337
+ tries: [],
3338
+ },
3339
+ method: {
3340
+ class: 'Lcom/journeyapps/barcodescanner/CaptureActivity;',
3341
+ name: 'onDestroy',
3342
+ prototype: {
3343
+ parameters: [],
3344
+ returnType: 'V',
3345
+ shorty: 'V',
3346
+ },
3347
+ },
3348
+ },
3349
+ {
3350
+ accessFlags: @Object {
3351
+ abstract: false,
3352
+ annotation: false,
3353
+ bridge: false,
3354
+ constructor: false,
3355
+ declaredSynchronized: false,
3356
+ enum: false,
3357
+ final: false,
3358
+ interface: false,
3359
+ native: false,
3360
+ private: false,
3361
+ protected: false,
3362
+ public: true,
3363
+ static: false,
3364
+ strict: false,
3365
+ synchronized: false,
3366
+ synthetic: false,
3367
+ transient: false,
3368
+ varargs: false,
3369
+ volatile: false,
3370
+ },
3371
+ code: {
3372
+ debugInfo: {
3373
+ bytecode: [
3374
+ {
3375
+ type: 'special',
3376
+ value: 14,
3377
+ },
3378
+ ],
3379
+ lineStart: 69,
3380
+ parameterNames: [
3381
+ undefined,
3382
+ undefined,
3383
+ ],
3384
+ },
3385
+ insSize: 3,
3386
+ instructions: [
3387
+ {
3388
+ field: {
3389
+ class: 'Lcom/journeyapps/barcodescanner/CaptureActivity;',
3390
+ name: 'barcodeScannerView',
3391
+ type: 'Lcom/journeyapps/barcodescanner/DecoratedBarcodeView;',
3392
+ },
3393
+ operation: 'iget-object',
3394
+ registers: [
3395
+ 0,
3396
+ 1,
3397
+ ],
3398
+ },
3399
+ {
3400
+ method: {
3401
+ class: 'Lcom/journeyapps/barcodescanner/DecoratedBarcodeView;',
3402
+ name: 'onKeyDown',
3403
+ prototype: {
3404
+ parameters: [
3405
+ 'I',
3406
+ 'Landroid/view/KeyEvent;',
3407
+ ],
3408
+ returnType: 'Z',
3409
+ shorty: 'ZIL',
3410
+ },
3411
+ },
3412
+ operation: 'invoke-virtual',
3413
+ registers: [
3414
+ 0,
3415
+ 2,
3416
+ 3,
3417
+ ],
3418
+ },
3419
+ {
3420
+ operation: 'move-result',
3421
+ registers: [
3422
+ 0,
3423
+ ],
3424
+ },
3425
+ {
3426
+ branchOffset: 11,
3427
+ operation: 'if-nez',
3428
+ registers: [
3429
+ 0,
3430
+ ],
3431
+ },
3432
+ {
3433
+ method: {
3434
+ class: 'Landroid/app/Activity;',
3435
+ name: 'onKeyDown',
3436
+ prototype: {
3437
+ parameters: [
3438
+ 'I',
3439
+ 'Landroid/view/KeyEvent;',
3440
+ ],
3441
+ returnType: 'Z',
3442
+ shorty: 'ZIL',
3443
+ },
3444
+ },
3445
+ operation: 'invoke-super',
3446
+ registers: [
3447
+ 1,
3448
+ 2,
3449
+ 3,
3450
+ ],
3451
+ },
3452
+ {
3453
+ operation: 'move-result',
3454
+ registers: [
3455
+ 2,
3456
+ ],
3457
+ },
3458
+ {
3459
+ branchOffset: 3,
3460
+ operation: 'if-eqz',
3461
+ registers: [
3462
+ 2,
3463
+ ],
3464
+ },
3465
+ {
3466
+ branchOffset: 3,
3467
+ operation: 'goto',
3468
+ },
3469
+ {
3470
+ operation: 'const/4',
3471
+ registers: [
3472
+ 2,
3473
+ ],
3474
+ value: 0,
3475
+ },
3476
+ {
3477
+ branchOffset: 2,
3478
+ operation: 'goto',
3479
+ },
3480
+ {
3481
+ operation: 'const/4',
3482
+ registers: [
3483
+ 2,
3484
+ ],
3485
+ value: 1,
3486
+ },
3487
+ {
3488
+ operation: 'return',
3489
+ registers: [
3490
+ 2,
3491
+ ],
3492
+ },
3493
+ ],
3494
+ outsSize: 3,
3495
+ registersSize: 4,
3496
+ tries: [],
3497
+ },
3498
+ method: {
3499
+ class: 'Lcom/journeyapps/barcodescanner/CaptureActivity;',
3500
+ name: 'onKeyDown',
3501
+ prototype: {
3502
+ parameters: [
3503
+ 'I',
3504
+ 'Landroid/view/KeyEvent;',
3505
+ ],
3506
+ returnType: 'Z',
3507
+ shorty: 'ZIL',
3508
+ },
3509
+ },
3510
+ },
3511
+ {
3512
+ accessFlags: @Object {
3513
+ abstract: false,
3514
+ annotation: false,
3515
+ bridge: false,
3516
+ constructor: false,
3517
+ declaredSynchronized: false,
3518
+ enum: false,
3519
+ final: false,
3520
+ interface: false,
3521
+ native: false,
3522
+ private: false,
3523
+ protected: true,
3524
+ public: false,
3525
+ static: false,
3526
+ strict: false,
3527
+ synchronized: false,
3528
+ synthetic: false,
3529
+ transient: false,
3530
+ varargs: false,
3531
+ volatile: false,
3532
+ },
3533
+ code: {
3534
+ debugInfo: {
3535
+ bytecode: [
3536
+ {
3537
+ type: 'special',
3538
+ value: 15,
3539
+ },
3540
+ ],
3541
+ lineStart: 46,
3542
+ parameterNames: [],
3543
+ },
3544
+ insSize: 1,
3545
+ instructions: [
3546
+ {
3547
+ method: {
3548
+ class: 'Landroid/app/Activity;',
3549
+ name: 'onPause',
3550
+ prototype: {
3551
+ parameters: [],
3552
+ returnType: 'V',
3553
+ shorty: 'V',
3554
+ },
3555
+ },
3556
+ operation: 'invoke-super',
3557
+ registers: [
3558
+ 1,
3559
+ ],
3560
+ },
3561
+ {
3562
+ field: {
3563
+ class: 'Lcom/journeyapps/barcodescanner/CaptureActivity;',
3564
+ name: 'capture',
3565
+ type: 'Lcom/journeyapps/barcodescanner/CaptureManager;',
3566
+ },
3567
+ operation: 'iget-object',
3568
+ registers: [
3569
+ 0,
3570
+ 1,
3571
+ ],
3572
+ },
3573
+ {
3574
+ method: {
3575
+ class: 'Lcom/journeyapps/barcodescanner/CaptureManager;',
3576
+ name: 'onPause',
3577
+ prototype: {
3578
+ parameters: [],
3579
+ returnType: 'V',
3580
+ shorty: 'V',
3581
+ },
3582
+ },
3583
+ operation: 'invoke-virtual',
3584
+ registers: [
3585
+ 0,
3586
+ ],
3587
+ },
3588
+ {
3589
+ operation: 'return-void',
3590
+ },
3591
+ ],
3592
+ outsSize: 1,
3593
+ registersSize: 2,
3594
+ tries: [],
3595
+ },
3596
+ method: {
3597
+ class: 'Lcom/journeyapps/barcodescanner/CaptureActivity;',
3598
+ name: 'onPause',
3599
+ prototype: {
3600
+ parameters: [],
3601
+ returnType: 'V',
3602
+ shorty: 'V',
3603
+ },
3604
+ },
3605
+ },
3606
+ {
3607
+ accessFlags: @Object {
3608
+ abstract: false,
3609
+ annotation: false,
3610
+ bridge: false,
3611
+ constructor: false,
3612
+ declaredSynchronized: false,
3613
+ enum: false,
3614
+ final: false,
3615
+ interface: false,
3616
+ native: false,
3617
+ private: false,
3618
+ protected: false,
3619
+ public: true,
3620
+ static: false,
3621
+ strict: false,
3622
+ synchronized: false,
3623
+ synthetic: false,
3624
+ transient: false,
3625
+ varargs: false,
3626
+ volatile: false,
3627
+ },
3628
+ code: {
3629
+ debugInfo: {
3630
+ bytecode: [
3631
+ {
3632
+ type: 'special',
3633
+ value: 14,
3634
+ },
3635
+ ],
3636
+ lineStart: 64,
3637
+ parameterNames: [
3638
+ undefined,
3639
+ undefined,
3640
+ undefined,
3641
+ ],
3642
+ },
3643
+ insSize: 4,
3644
+ instructions: [
3645
+ {
3646
+ field: {
3647
+ class: 'Lcom/journeyapps/barcodescanner/CaptureActivity;',
3648
+ name: 'capture',
3649
+ type: 'Lcom/journeyapps/barcodescanner/CaptureManager;',
3650
+ },
3651
+ operation: 'iget-object',
3652
+ registers: [
3653
+ 0,
3654
+ 1,
3655
+ ],
3656
+ },
3657
+ {
3658
+ method: {
3659
+ class: 'Lcom/journeyapps/barcodescanner/CaptureManager;',
3660
+ name: 'onRequestPermissionsResult',
3661
+ prototype: {
3662
+ parameters: [
3663
+ 'I',
3664
+ '[Ljava/lang/String;',
3665
+ '[I',
3666
+ ],
3667
+ returnType: 'V',
3668
+ shorty: 'VILL',
3669
+ },
3670
+ },
3671
+ operation: 'invoke-virtual',
3672
+ registers: [
3673
+ 0,
3674
+ 2,
3675
+ 3,
3676
+ 4,
3677
+ ],
3678
+ },
3679
+ {
3680
+ operation: 'return-void',
3681
+ },
3682
+ ],
3683
+ outsSize: 4,
3684
+ registersSize: 5,
3685
+ tries: [],
3686
+ },
3687
+ method: {
3688
+ class: 'Lcom/journeyapps/barcodescanner/CaptureActivity;',
3689
+ name: 'onRequestPermissionsResult',
3690
+ prototype: {
3691
+ parameters: [
3692
+ 'I',
3693
+ '[Ljava/lang/String;',
3694
+ '[I',
3695
+ ],
3696
+ returnType: 'V',
3697
+ shorty: 'VILL',
3698
+ },
3699
+ },
3700
+ },
3701
+ {
3702
+ accessFlags: @Object {
3703
+ abstract: false,
3704
+ annotation: false,
3705
+ bridge: false,
3706
+ constructor: false,
3707
+ declaredSynchronized: false,
3708
+ enum: false,
3709
+ final: false,
3710
+ interface: false,
3711
+ native: false,
3712
+ private: false,
3713
+ protected: true,
3714
+ public: false,
3715
+ static: false,
3716
+ strict: false,
3717
+ synchronized: false,
3718
+ synthetic: false,
3719
+ transient: false,
3720
+ varargs: false,
3721
+ volatile: false,
3722
+ },
3723
+ code: {
3724
+ debugInfo: {
3725
+ bytecode: [
3726
+ {
3727
+ type: 'special',
3728
+ value: 15,
3729
+ },
3730
+ ],
3731
+ lineStart: 40,
3732
+ parameterNames: [],
3733
+ },
3734
+ insSize: 1,
3735
+ instructions: [
3736
+ {
3737
+ method: {
3738
+ class: 'Landroid/app/Activity;',
3739
+ name: 'onResume',
3740
+ prototype: {
3741
+ parameters: [],
3742
+ returnType: 'V',
3743
+ shorty: 'V',
3744
+ },
3745
+ },
3746
+ operation: 'invoke-super',
3747
+ registers: [
3748
+ 1,
3749
+ ],
3750
+ },
3751
+ {
3752
+ field: {
3753
+ class: 'Lcom/journeyapps/barcodescanner/CaptureActivity;',
3754
+ name: 'capture',
3755
+ type: 'Lcom/journeyapps/barcodescanner/CaptureManager;',
3756
+ },
3757
+ operation: 'iget-object',
3758
+ registers: [
3759
+ 0,
3760
+ 1,
3761
+ ],
3762
+ },
3763
+ {
3764
+ method: {
3765
+ class: 'Lcom/journeyapps/barcodescanner/CaptureManager;',
3766
+ name: 'onResume',
3767
+ prototype: {
3768
+ parameters: [],
3769
+ returnType: 'V',
3770
+ shorty: 'V',
3771
+ },
3772
+ },
3773
+ operation: 'invoke-virtual',
3774
+ registers: [
3775
+ 0,
3776
+ ],
3777
+ },
3778
+ {
3779
+ operation: 'return-void',
3780
+ },
3781
+ ],
3782
+ outsSize: 1,
3783
+ registersSize: 2,
3784
+ tries: [],
3785
+ },
3786
+ method: {
3787
+ class: 'Lcom/journeyapps/barcodescanner/CaptureActivity;',
3788
+ name: 'onResume',
3789
+ prototype: {
3790
+ parameters: [],
3791
+ returnType: 'V',
3792
+ shorty: 'V',
3793
+ },
3794
+ },
3795
+ },
3796
+ {
3797
+ accessFlags: @Object {
3798
+ abstract: false,
3799
+ annotation: false,
3800
+ bridge: false,
3801
+ constructor: false,
3802
+ declaredSynchronized: false,
3803
+ enum: false,
3804
+ final: false,
3805
+ interface: false,
3806
+ native: false,
3807
+ private: false,
3808
+ protected: true,
3809
+ public: false,
3810
+ static: false,
3811
+ strict: false,
3812
+ synchronized: false,
3813
+ synthetic: false,
3814
+ transient: false,
3815
+ varargs: false,
3816
+ volatile: false,
3817
+ },
3818
+ code: {
3819
+ debugInfo: {
3820
+ bytecode: [
3821
+ {
3822
+ type: 'special',
3823
+ value: 15,
3824
+ },
3825
+ ],
3826
+ lineStart: 58,
3827
+ parameterNames: [
3828
+ undefined,
3829
+ ],
3830
+ },
3831
+ insSize: 2,
3832
+ instructions: [
3833
+ {
3834
+ method: {
3835
+ class: 'Landroid/app/Activity;',
3836
+ name: 'onSaveInstanceState',
3837
+ prototype: {
3838
+ parameters: [
3839
+ 'Landroid/os/Bundle;',
3840
+ ],
3841
+ returnType: 'V',
3842
+ shorty: 'VL',
3843
+ },
3844
+ },
3845
+ operation: 'invoke-super',
3846
+ registers: [
3847
+ 1,
3848
+ 2,
3849
+ ],
3850
+ },
3851
+ {
3852
+ field: {
3853
+ class: 'Lcom/journeyapps/barcodescanner/CaptureActivity;',
3854
+ name: 'capture',
3855
+ type: 'Lcom/journeyapps/barcodescanner/CaptureManager;',
3856
+ },
3857
+ operation: 'iget-object',
3858
+ registers: [
3859
+ 0,
3860
+ 1,
3861
+ ],
3862
+ },
3863
+ {
3864
+ method: {
3865
+ class: 'Lcom/journeyapps/barcodescanner/CaptureManager;',
3866
+ name: 'onSaveInstanceState',
3867
+ prototype: {
3868
+ parameters: [
3869
+ 'Landroid/os/Bundle;',
3870
+ ],
3871
+ returnType: 'V',
3872
+ shorty: 'VL',
3873
+ },
3874
+ },
3875
+ operation: 'invoke-virtual',
3876
+ registers: [
3877
+ 0,
3878
+ 2,
3879
+ ],
3880
+ },
3881
+ {
3882
+ operation: 'return-void',
3883
+ },
3884
+ ],
3885
+ outsSize: 2,
3886
+ registersSize: 3,
3887
+ tries: [],
3888
+ },
3889
+ method: {
3890
+ class: 'Lcom/journeyapps/barcodescanner/CaptureActivity;',
3891
+ name: 'onSaveInstanceState',
3892
+ prototype: {
3893
+ parameters: [
3894
+ 'Landroid/os/Bundle;',
3895
+ ],
3896
+ returnType: 'V',
3897
+ shorty: 'VL',
3898
+ },
3899
+ },
3900
+ },
3901
+ ],
3902
+ },
3903
+ interfaces: [],
3904
+ sourceFile: 'CaptureActivity.java',
3905
+ staticValues: [],
3906
+ superclass: 'Landroid/app/Activity;',
3907
+ }