@futpib/parser 1.0.2 → 1.0.4
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.
- package/.github/copilot-instructions.md +149 -0
- package/.github/workflows/copilot-setup-steps.yml +18 -0
- package/.github/workflows/main.yml +29 -8
- package/.yarn/releases/yarn-4.9.4.cjs +942 -0
- package/.yarnrc.yml +1 -1
- package/build/allSettledStream.js +1 -1
- package/build/allSettledStream.test.js +2 -2
- package/build/androidPackageParser.d.ts +1 -1
- package/build/androidPackageParser.js +5 -3
- package/build/androidPackageParser.test.js +7 -7
- package/build/androidPackageUnparser.d.ts +2 -2
- package/build/androidPackageUnparser.js +18 -14
- package/build/androidPackageUnparser.test.js +7 -7
- package/build/arbitrarilySlicedAsyncInterator.js +2 -1
- package/build/arbitraryDalvikBytecode.d.ts +4 -0
- package/build/arbitraryDalvikBytecode.js +640 -0
- package/build/arbitraryDalvikExecutable.d.ts +3 -0
- package/build/arbitraryDalvikExecutable.js +282 -0
- package/build/arbitraryDosDateTime.js +1 -0
- package/build/arbitraryZipStream.js +1 -1
- package/build/arrayParser.js +2 -2
- package/build/arrayUnparser.d.ts +1 -1
- package/build/backsmali.d.ts +3 -1
- package/build/backsmali.js +31 -3
- package/build/bash.d.ts +84 -0
- package/build/bash.js +1 -0
- package/build/bashParser.d.ts +6 -0
- package/build/bashParser.js +294 -0
- package/build/bashParser.test.d.ts +1 -0
- package/build/bashParser.test.js +181 -0
- package/build/customInvariant.d.ts +2 -1
- package/build/customInvariant.js +4 -6
- package/build/dalvikBytecodeParser/formatParsers.d.ts +76 -2
- package/build/dalvikBytecodeParser/formatParsers.js +146 -11
- package/build/dalvikBytecodeParser/formatSizes.d.ts +34 -0
- package/build/dalvikBytecodeParser/formatSizes.js +34 -0
- package/build/dalvikBytecodeParser/operationFormats.d.ts +225 -0
- package/build/dalvikBytecodeParser/operationFormats.js +225 -0
- package/build/dalvikBytecodeParser.d.ts +1105 -5
- package/build/dalvikBytecodeParser.js +658 -205
- package/build/dalvikBytecodeUnparser/formatUnparsers.d.ts +152 -0
- package/build/dalvikBytecodeUnparser/formatUnparsers.js +225 -0
- package/build/dalvikBytecodeUnparser.d.ts +3 -0
- package/build/dalvikBytecodeUnparser.js +642 -0
- package/build/dalvikBytecodeUnparser.test.d.ts +1 -0
- package/build/dalvikBytecodeUnparser.test.js +25 -0
- package/build/dalvikExecutable.d.ts +65 -8
- package/build/dalvikExecutable.js +36 -0
- package/build/dalvikExecutableParser/stringSyntaxParser.d.ts +1 -1
- package/build/dalvikExecutableParser/stringSyntaxParser.js +17 -17
- package/build/dalvikExecutableParser/typeParsers.d.ts +2 -1
- package/build/dalvikExecutableParser/typeParsers.js +16 -11
- package/build/dalvikExecutableParser/typedNumbers.d.ts +85 -69
- package/build/dalvikExecutableParser/typedNumbers.js +0 -1
- package/build/dalvikExecutableParser.d.ts +2 -2
- package/build/dalvikExecutableParser.js +655 -337
- package/build/dalvikExecutableParser.test.js +24 -22
- package/build/dalvikExecutableParserAgainstSmaliParser.test.js +223 -246
- package/build/dalvikExecutableUnparser/annotationUnparsers.d.ts +14 -0
- package/build/dalvikExecutableUnparser/annotationUnparsers.js +97 -0
- package/build/dalvikExecutableUnparser/poolBuilders.d.ts +49 -0
- package/build/dalvikExecutableUnparser/poolBuilders.js +140 -0
- package/build/dalvikExecutableUnparser/poolScanners.d.ts +4 -0
- package/build/dalvikExecutableUnparser/poolScanners.js +220 -0
- package/build/dalvikExecutableUnparser/sectionUnparsers.d.ts +25 -0
- package/build/dalvikExecutableUnparser/sectionUnparsers.js +581 -0
- package/build/dalvikExecutableUnparser/utils.d.ts +10 -0
- package/build/dalvikExecutableUnparser/utils.js +108 -0
- package/build/dalvikExecutableUnparser.d.ts +4 -0
- package/build/dalvikExecutableUnparser.js +406 -0
- package/build/dalvikExecutableUnparser.test.d.ts +1 -0
- package/build/dalvikExecutableUnparser.test.js +31 -0
- package/build/debugLogInputParser.js +1 -1
- package/build/disjunctionParser.d.ts +2 -2
- package/build/disjunctionParser.js +2 -2
- package/build/elementTerminatedArrayParser.d.ts +2 -2
- package/build/elementTerminatedArrayParser.js +1 -1
- package/build/elementTerminatedArrayParser.test.js +5 -5
- package/build/elementTerminatedSequenceArrayParser.d.ts +2 -2
- package/build/elementTerminatedSequenceArrayParser.js +1 -1
- package/build/elementTerminatedSequenceArrayParser.test.js +2 -2
- package/build/elementTerminatedSequenceParser.d.ts +2 -2
- package/build/elementTerminatedSequenceParser.js +1 -1
- package/build/elementTerminatedSequenceParser.test.js +2 -2
- package/build/endOfInputParser.d.ts +1 -1
- package/build/exactElementSwitchParser.d.ts +3 -0
- package/build/exactElementSwitchParser.js +22 -0
- package/build/fetchCid.js +2 -6
- package/build/fetchCid.test.d.ts +1 -0
- package/build/fetchCid.test.js +16 -0
- package/build/fixedLengthSequenceParser.test.js +2 -2
- package/build/hasExecutable.js +2 -2
- package/build/highResolutionTimer.js +1 -1
- package/build/index.d.ts +24 -2
- package/build/index.js +22 -1
- package/build/inputReader.d.ts +1 -1
- package/build/inputReader.test.js +33 -45
- package/build/javaKeyStoreParser.test.js +6 -6
- package/build/jsonParser.js +8 -8
- package/build/lazyMessageError.d.ts +48 -0
- package/build/lazyMessageError.js +53 -0
- package/build/lazyMessageError.test.d.ts +1 -0
- package/build/lazyMessageError.test.js +15 -0
- package/build/leb128Parser.d.ts +1 -1
- package/build/leb128Parser.js +10 -10
- package/build/leb128Parser.test.js +7 -7
- package/build/negativeLookaheadParser.js +2 -2
- package/build/negativeLookaheadParser.test.js +4 -4
- package/build/noStackCaptureOverheadError.d.ts +4 -0
- package/build/noStackCaptureOverheadError.js +9 -0
- package/build/noStackCaptureOverheadError.test.d.ts +1 -0
- package/build/noStackCaptureOverheadError.test.js +15 -0
- package/build/nonEmptyArrayParser.js +2 -2
- package/build/nonEmptyArrayParser.test.js +2 -1
- package/build/optionalParser.js +2 -2
- package/build/parser.d.ts +2 -1
- package/build/parser.js +23 -8
- package/build/parser.test.js +78 -29
- package/build/parserConsumedSequenceParser.d.ts +1 -1
- package/build/parserConsumedSequenceParser.js +2 -2
- package/build/parserContext.d.ts +8 -6
- package/build/parserContext.js +60 -33
- package/build/parserContext.test.js +7 -3
- package/build/parserError.d.ts +603 -44
- package/build/parserError.js +98 -53
- package/build/parserImplementationInvariant.d.ts +1 -1
- package/build/parserImplementationInvariant.js +2 -2
- package/build/parserInputCompanion.js +2 -2
- package/build/promiseCompose.js +1 -2
- package/build/regexpParser.d.ts +2 -0
- package/build/regexpParser.js +71 -0
- package/build/regexpParser.test.d.ts +1 -0
- package/build/regexpParser.test.js +83 -0
- package/build/regularExpression.d.ts +63 -0
- package/build/regularExpression.js +1 -0
- package/build/regularExpressionParser.d.ts +3 -0
- package/build/regularExpressionParser.js +580 -0
- package/build/regularExpressionParser.test.d.ts +1 -0
- package/build/regularExpressionParser.test.js +89 -0
- package/build/separatedArrayParser.js +2 -2
- package/build/separatedNonEmptyArrayParser.d.ts +2 -0
- package/build/separatedNonEmptyArrayParser.js +40 -0
- package/build/separatedNonEmptyArrayParser.test.d.ts +1 -0
- package/build/separatedNonEmptyArrayParser.test.js +66 -0
- package/build/sequenceBuffer.js +1 -1
- package/build/sequenceTerminatedSequenceParser.d.ts +2 -2
- package/build/sequenceTerminatedSequenceParser.js +3 -3
- package/build/sequenceTerminatedSequenceParser.test.js +1 -1
- package/build/sequenceUnparser.d.ts +1 -1
- package/build/skipToParser.d.ts +1 -1
- package/build/skipToParser.js +2 -2
- package/build/sliceBoundedParser.test.js +4 -9
- package/build/smali.d.ts +1 -1
- package/build/smali.js +6 -2
- package/build/smaliParser.d.ts +62 -6
- package/build/smaliParser.js +1721 -296
- package/build/smaliParser.test.js +338 -43
- package/build/stringFromAsyncIterable.d.ts +1 -0
- package/build/stringFromAsyncIterable.js +7 -0
- package/build/terminatedArrayParser.js +4 -4
- package/build/terminatedArrayParser.test.js +7 -7
- package/build/toAsyncIterator.js +4 -4
- package/build/unionParser.d.ts +1 -1
- package/build/unionParser.js +2 -2
- package/build/unionParser.test.js +3 -3
- package/build/unparser.d.ts +3 -3
- package/build/unparser.js +6 -4
- package/build/unparser.test.js +7 -19
- package/build/unparserContext.d.ts +2 -2
- package/build/unparserContext.js +2 -3
- package/build/unparserError.d.ts +2 -1
- package/build/unparserError.js +2 -1
- package/build/unparserImplementationInvariant.d.ts +1 -1
- package/build/unparserOutputCompanion.d.ts +1 -1
- package/build/unparserOutputCompanion.js +1 -1
- package/build/zipParser.js +1 -1
- package/build/zipUnparser.d.ts +3 -3
- package/build/zipUnparser.js +9 -19
- package/build/zipUnparser.test.js +1 -1
- package/package.json +20 -26
- package/src/allSettledStream.test.ts +2 -2
- package/src/allSettledStream.ts +3 -3
- package/src/androidPackageParser.test.ts +17 -19
- package/src/androidPackageParser.ts +129 -171
- package/src/androidPackageUnparser.test.ts +19 -21
- package/src/androidPackageUnparser.ts +23 -17
- package/src/arbitrarilySlicedAsyncInterable.ts +1 -1
- package/src/arbitrarilySlicedAsyncInterator.ts +4 -4
- package/src/arbitraryDalvikBytecode.ts +992 -0
- package/src/arbitraryDalvikExecutable.ts +434 -0
- package/src/arbitraryDosDateTime.ts +1 -0
- package/src/arbitraryZipStream.ts +1 -1
- package/src/arrayParser.ts +2 -2
- package/src/arrayUnparser.ts +2 -2
- package/src/backsmali.ts +48 -4
- package/src/bash.ts +120 -0
- package/src/bashParser.test.ts +332 -0
- package/src/bashParser.ts +461 -0
- package/src/bsonParser.test.ts +12 -14
- package/src/customInvariant.ts +8 -12
- package/src/dalvikBytecodeParser/formatParsers.ts +376 -17
- package/src/dalvikBytecodeParser/formatSizes.ts +35 -0
- package/src/dalvikBytecodeParser/operationFormats.ts +226 -0
- package/src/dalvikBytecodeParser.ts +1042 -243
- package/src/dalvikBytecodeUnparser/formatUnparsers.ts +442 -0
- package/src/dalvikBytecodeUnparser.test.ts +44 -0
- package/src/dalvikBytecodeUnparser.ts +758 -0
- package/src/dalvikExecutable.ts +110 -48
- package/src/dalvikExecutableParser/stringSyntaxParser.ts +33 -33
- package/src/dalvikExecutableParser/typeParsers.ts +23 -14
- package/src/dalvikExecutableParser/typedNumbers.ts +19 -19
- package/src/dalvikExecutableParser.test.ts +60 -60
- package/src/dalvikExecutableParser.test.ts.md +6 -6
- package/src/dalvikExecutableParser.test.ts.snap +0 -0
- package/src/dalvikExecutableParser.ts +911 -434
- package/src/dalvikExecutableParserAgainstSmaliParser.test.ts +256 -239
- package/src/dalvikExecutableUnparser/annotationUnparsers.ts +135 -0
- package/src/dalvikExecutableUnparser/poolBuilders.ts +189 -0
- package/src/dalvikExecutableUnparser/poolScanners.ts +297 -0
- package/src/dalvikExecutableUnparser/sectionUnparsers.ts +683 -0
- package/src/dalvikExecutableUnparser/utils.ts +149 -0
- package/src/dalvikExecutableUnparser.test.ts +57 -0
- package/src/dalvikExecutableUnparser.ts +581 -0
- package/src/debugLogInputParser.ts +1 -1
- package/src/disjunctionParser.ts +5 -5
- package/src/elementTerminatedArrayParser.test.ts +8 -8
- package/src/elementTerminatedArrayParser.ts +2 -2
- package/src/elementTerminatedSequenceArrayParser.test.ts +4 -6
- package/src/elementTerminatedSequenceArrayParser.ts +2 -2
- package/src/elementTerminatedSequenceParser.test.ts +4 -6
- package/src/elementTerminatedSequenceParser.ts +2 -2
- package/src/endOfInputParser.ts +1 -1
- package/src/exactElementSwitchParser.ts +41 -0
- package/src/fetchCid.test.ts +20 -0
- package/src/fetchCid.ts +3 -7
- package/src/fixedLengthSequenceParser.test.ts +10 -12
- package/src/hasExecutable.ts +2 -2
- package/src/highResolutionTimer.ts +1 -1
- package/src/index.ts +113 -2
- package/src/inputReader.test.ts +39 -52
- package/src/inputReader.ts +2 -4
- package/src/inputReaderState.ts +1 -1
- package/src/inspect.ts +1 -1
- package/src/javaKeyStoreParser.test.ts +12 -14
- package/src/javaKeyStoreParser.ts +2 -6
- package/src/jsonParser.test.ts +2 -4
- package/src/jsonParser.ts +34 -38
- package/src/lazyMessageError.test.ts +21 -0
- package/src/lazyMessageError.ts +88 -0
- package/src/leb128Parser.test.ts +25 -23
- package/src/leb128Parser.ts +19 -19
- package/src/negativeLookaheadParser.test.ts +7 -11
- package/src/negativeLookaheadParser.ts +2 -2
- package/src/noStackCaptureOverheadError.test.ts +17 -0
- package/src/noStackCaptureOverheadError.ts +12 -0
- package/src/nonEmptyArrayParser.test.ts +3 -2
- package/src/nonEmptyArrayParser.ts +2 -2
- package/src/optionalParser.ts +2 -2
- package/src/parser.test.ts +96 -43
- package/src/parser.test.ts.md +13 -6
- package/src/parser.test.ts.snap +0 -0
- package/src/parser.ts +35 -12
- package/src/parserAccessorParser.ts +1 -1
- package/src/parserConsumedSequenceParser.ts +3 -3
- package/src/parserContext.test.ts +7 -3
- package/src/parserContext.ts +82 -48
- package/src/parserError.ts +143 -63
- package/src/parserImplementationInvariant.ts +3 -3
- package/src/parserInputCompanion.ts +2 -2
- package/src/promiseCompose.ts +2 -2
- package/src/regexpParser.test.ts +186 -0
- package/src/regexpParser.ts +94 -0
- package/src/regularExpression.ts +24 -0
- package/src/regularExpressionParser.test.ts +102 -0
- package/src/regularExpressionParser.ts +921 -0
- package/src/separatedArrayParser.ts +3 -3
- package/src/separatedNonEmptyArrayParser.test.ts +117 -0
- package/src/separatedNonEmptyArrayParser.ts +61 -0
- package/src/sequenceBuffer.test.ts +9 -9
- package/src/sequenceBuffer.ts +4 -4
- package/src/sequenceTerminatedSequenceParser.test.ts +3 -5
- package/src/sequenceTerminatedSequenceParser.ts +4 -4
- package/src/sequenceUnparser.ts +2 -2
- package/src/skipToParser.ts +2 -2
- package/src/sliceBoundedParser.test.ts +4 -12
- package/src/sliceBoundedParser.ts +2 -2
- package/src/smali.ts +8 -3
- package/src/smaliParser.test.ts +377 -66
- package/src/smaliParser.test.ts.md +1635 -48
- package/src/smaliParser.test.ts.snap +0 -0
- package/src/smaliParser.ts +2751 -569
- package/src/stringFromAsyncIterable.ts +9 -0
- package/src/terminatedArrayParser.test.ts +11 -11
- package/src/terminatedArrayParser.ts +5 -7
- package/src/toAsyncIterator.ts +8 -8
- package/src/uint8Array.ts +2 -3
- package/src/unionParser.test.ts +22 -23
- package/src/unionParser.ts +6 -8
- package/src/unparser.test.ts +18 -34
- package/src/unparser.ts +13 -9
- package/src/unparserContext.ts +9 -13
- package/src/unparserError.ts +2 -1
- package/src/unparserImplementationInvariant.ts +1 -1
- package/src/unparserOutputCompanion.ts +1 -1
- package/src/zip.ts +2 -6
- package/src/zipParser.ts +10 -18
- package/src/zipUnparser.test.ts +1 -1
- package/src/zipUnparser.ts +52 -64
- package/tsconfig.json +7 -1
- package/xo.config.ts +15 -0
- package/.yarn/releases/yarn-4.5.3.cjs +0 -934
|
@@ -4,6 +4,327 @@ The actual snapshot is saved in `smaliParser.test.ts.snap`.
|
|
|
4
4
|
|
|
5
5
|
Generated by [AVA](https://avajs.dev).
|
|
6
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
|
+
|
|
7
328
|
## smali from dex bafkreibb4gsprc3fvmnyqx6obswvm7e7wngnfj64gz65ey72r7xgyzymt4 pl/czak/minimal/MainActivity
|
|
8
329
|
|
|
9
330
|
> Snapshot 1
|
|
@@ -57,7 +378,16 @@ Generated by [AVA](https://avajs.dev).
|
|
|
57
378
|
volatile: false,
|
|
58
379
|
},
|
|
59
380
|
code: {
|
|
60
|
-
debugInfo:
|
|
381
|
+
debugInfo: {
|
|
382
|
+
bytecode: [
|
|
383
|
+
{
|
|
384
|
+
type: 'special',
|
|
385
|
+
value: 14,
|
|
386
|
+
},
|
|
387
|
+
],
|
|
388
|
+
lineStart: 7,
|
|
389
|
+
parameterNames: [],
|
|
390
|
+
},
|
|
61
391
|
insSize: 1,
|
|
62
392
|
instructions: [
|
|
63
393
|
{
|
|
@@ -120,7 +450,28 @@ Generated by [AVA](https://avajs.dev).
|
|
|
120
450
|
volatile: false,
|
|
121
451
|
},
|
|
122
452
|
code: {
|
|
123
|
-
debugInfo:
|
|
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
|
+
},
|
|
124
475
|
insSize: 2,
|
|
125
476
|
instructions: [
|
|
126
477
|
{
|
|
@@ -137,8 +488,8 @@ Generated by [AVA](https://avajs.dev).
|
|
|
137
488
|
},
|
|
138
489
|
operation: 'invoke-super',
|
|
139
490
|
registers: [
|
|
140
|
-
3,
|
|
141
491
|
2,
|
|
492
|
+
3,
|
|
142
493
|
],
|
|
143
494
|
},
|
|
144
495
|
{
|
|
@@ -162,8 +513,8 @@ Generated by [AVA](https://avajs.dev).
|
|
|
162
513
|
},
|
|
163
514
|
operation: 'invoke-direct',
|
|
164
515
|
registers: [
|
|
165
|
-
2,
|
|
166
516
|
0,
|
|
517
|
+
2,
|
|
167
518
|
],
|
|
168
519
|
},
|
|
169
520
|
{
|
|
@@ -187,8 +538,8 @@ Generated by [AVA](https://avajs.dev).
|
|
|
187
538
|
},
|
|
188
539
|
operation: 'invoke-virtual',
|
|
189
540
|
registers: [
|
|
190
|
-
1,
|
|
191
541
|
0,
|
|
542
|
+
1,
|
|
192
543
|
],
|
|
193
544
|
},
|
|
194
545
|
{
|
|
@@ -205,8 +556,8 @@ Generated by [AVA](https://avajs.dev).
|
|
|
205
556
|
},
|
|
206
557
|
operation: 'invoke-virtual',
|
|
207
558
|
registers: [
|
|
208
|
-
0,
|
|
209
559
|
2,
|
|
560
|
+
0,
|
|
210
561
|
],
|
|
211
562
|
},
|
|
212
563
|
{
|
|
@@ -263,7 +614,54 @@ Generated by [AVA](https://avajs.dev).
|
|
|
263
614
|
varargs: false,
|
|
264
615
|
volatile: false,
|
|
265
616
|
},
|
|
266
|
-
annotations:
|
|
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
|
+
},
|
|
267
665
|
class: 'Ld/m;',
|
|
268
666
|
classData: {
|
|
269
667
|
directMethods: [
|
|
@@ -290,7 +688,19 @@ Generated by [AVA](https://avajs.dev).
|
|
|
290
688
|
volatile: false,
|
|
291
689
|
},
|
|
292
690
|
code: {
|
|
293
|
-
debugInfo:
|
|
691
|
+
debugInfo: {
|
|
692
|
+
bytecode: [
|
|
693
|
+
{
|
|
694
|
+
lineDiff: 63,
|
|
695
|
+
type: 'advanceLine',
|
|
696
|
+
},
|
|
697
|
+
],
|
|
698
|
+
lineStart: 1,
|
|
699
|
+
parameterNames: [
|
|
700
|
+
undefined,
|
|
701
|
+
undefined,
|
|
702
|
+
],
|
|
703
|
+
},
|
|
294
704
|
insSize: 3,
|
|
295
705
|
instructions: [
|
|
296
706
|
{
|
|
@@ -308,11 +718,11 @@ Generated by [AVA](https://avajs.dev).
|
|
|
308
718
|
value: 2130903347,
|
|
309
719
|
},
|
|
310
720
|
{
|
|
721
|
+
branchOffset: 17,
|
|
311
722
|
operation: 'if-nez',
|
|
312
723
|
registers: [
|
|
313
724
|
6,
|
|
314
725
|
],
|
|
315
|
-
string: 'cond_15',
|
|
316
726
|
},
|
|
317
727
|
{
|
|
318
728
|
operation: 'new-instance',
|
|
@@ -373,10 +783,10 @@ Generated by [AVA](https://avajs.dev).
|
|
|
373
783
|
},
|
|
374
784
|
operation: 'invoke-virtual',
|
|
375
785
|
registers: [
|
|
376
|
-
0,
|
|
377
|
-
2,
|
|
378
|
-
1,
|
|
379
786
|
3,
|
|
787
|
+
1,
|
|
788
|
+
2,
|
|
789
|
+
0,
|
|
380
790
|
],
|
|
381
791
|
},
|
|
382
792
|
{
|
|
@@ -392,8 +802,8 @@ Generated by [AVA](https://avajs.dev).
|
|
|
392
802
|
],
|
|
393
803
|
},
|
|
394
804
|
{
|
|
805
|
+
branchOffset: 2,
|
|
395
806
|
operation: 'goto',
|
|
396
|
-
string: 'goto_16',
|
|
397
807
|
},
|
|
398
808
|
{
|
|
399
809
|
operation: 'move',
|
|
@@ -417,9 +827,9 @@ Generated by [AVA](https://avajs.dev).
|
|
|
417
827
|
},
|
|
418
828
|
operation: 'invoke-direct',
|
|
419
829
|
registers: [
|
|
420
|
-
2,
|
|
421
|
-
5,
|
|
422
830
|
4,
|
|
831
|
+
5,
|
|
832
|
+
2,
|
|
423
833
|
],
|
|
424
834
|
},
|
|
425
835
|
{
|
|
@@ -457,8 +867,8 @@ Generated by [AVA](https://avajs.dev).
|
|
|
457
867
|
},
|
|
458
868
|
operation: 'invoke-direct',
|
|
459
869
|
registers: [
|
|
460
|
-
3,
|
|
461
870
|
2,
|
|
871
|
+
3,
|
|
462
872
|
],
|
|
463
873
|
},
|
|
464
874
|
{
|
|
@@ -469,8 +879,8 @@ Generated by [AVA](https://avajs.dev).
|
|
|
469
879
|
},
|
|
470
880
|
operation: 'iput-object',
|
|
471
881
|
registers: [
|
|
472
|
-
4,
|
|
473
882
|
2,
|
|
883
|
+
4,
|
|
474
884
|
],
|
|
475
885
|
},
|
|
476
886
|
{
|
|
@@ -495,11 +905,11 @@ Generated by [AVA](https://avajs.dev).
|
|
|
495
905
|
],
|
|
496
906
|
},
|
|
497
907
|
{
|
|
908
|
+
branchOffset: 16,
|
|
498
909
|
operation: 'if-nez',
|
|
499
910
|
registers: [
|
|
500
911
|
6,
|
|
501
912
|
],
|
|
502
|
-
string: 'cond_37',
|
|
503
913
|
},
|
|
504
914
|
{
|
|
505
915
|
operation: 'new-instance',
|
|
@@ -560,10 +970,10 @@ Generated by [AVA](https://avajs.dev).
|
|
|
560
970
|
},
|
|
561
971
|
operation: 'invoke-virtual',
|
|
562
972
|
registers: [
|
|
563
|
-
0,
|
|
564
|
-
6,
|
|
565
|
-
1,
|
|
566
973
|
5,
|
|
974
|
+
1,
|
|
975
|
+
6,
|
|
976
|
+
0,
|
|
567
977
|
],
|
|
568
978
|
},
|
|
569
979
|
{
|
|
@@ -600,8 +1010,8 @@ Generated by [AVA](https://avajs.dev).
|
|
|
600
1010
|
},
|
|
601
1011
|
operation: 'iput',
|
|
602
1012
|
registers: [
|
|
603
|
-
5,
|
|
604
1013
|
6,
|
|
1014
|
+
5,
|
|
605
1015
|
],
|
|
606
1016
|
},
|
|
607
1017
|
{
|
|
@@ -763,9 +1173,9 @@ Generated by [AVA](https://avajs.dev).
|
|
|
763
1173
|
},
|
|
764
1174
|
operation: 'invoke-virtual',
|
|
765
1175
|
registers: [
|
|
766
|
-
3,
|
|
767
|
-
2,
|
|
768
1176
|
0,
|
|
1177
|
+
2,
|
|
1178
|
+
3,
|
|
769
1179
|
],
|
|
770
1180
|
},
|
|
771
1181
|
{
|
|
@@ -960,8 +1370,8 @@ Generated by [AVA](https://avajs.dev).
|
|
|
960
1370
|
},
|
|
961
1371
|
operation: 'iget-object',
|
|
962
1372
|
registers: [
|
|
963
|
-
2,
|
|
964
1373
|
1,
|
|
1374
|
+
2,
|
|
965
1375
|
],
|
|
966
1376
|
},
|
|
967
1377
|
{
|
|
@@ -981,10 +1391,10 @@ Generated by [AVA](https://avajs.dev).
|
|
|
981
1391
|
},
|
|
982
1392
|
operation: 'invoke-static',
|
|
983
1393
|
registers: [
|
|
984
|
-
3,
|
|
985
|
-
2,
|
|
986
|
-
0,
|
|
987
1394
|
1,
|
|
1395
|
+
0,
|
|
1396
|
+
2,
|
|
1397
|
+
3,
|
|
988
1398
|
],
|
|
989
1399
|
},
|
|
990
1400
|
{
|
|
@@ -1039,7 +1449,16 @@ Generated by [AVA](https://avajs.dev).
|
|
|
1039
1449
|
volatile: false,
|
|
1040
1450
|
},
|
|
1041
1451
|
code: {
|
|
1042
|
-
debugInfo:
|
|
1452
|
+
debugInfo: {
|
|
1453
|
+
bytecode: [
|
|
1454
|
+
{
|
|
1455
|
+
lineDiff: 23,
|
|
1456
|
+
type: 'advanceLine',
|
|
1457
|
+
},
|
|
1458
|
+
],
|
|
1459
|
+
lineStart: 1,
|
|
1460
|
+
parameterNames: [],
|
|
1461
|
+
},
|
|
1043
1462
|
insSize: 1,
|
|
1044
1463
|
instructions: [
|
|
1045
1464
|
{
|
|
@@ -1050,16 +1469,16 @@ Generated by [AVA](https://avajs.dev).
|
|
|
1050
1469
|
},
|
|
1051
1470
|
operation: 'iget-object',
|
|
1052
1471
|
registers: [
|
|
1053
|
-
3,
|
|
1054
1472
|
0,
|
|
1473
|
+
3,
|
|
1055
1474
|
],
|
|
1056
1475
|
},
|
|
1057
1476
|
{
|
|
1477
|
+
branchOffset: 19,
|
|
1058
1478
|
operation: 'if-nez',
|
|
1059
1479
|
registers: [
|
|
1060
1480
|
0,
|
|
1061
1481
|
],
|
|
1062
|
-
string: 'cond_15',
|
|
1063
1482
|
},
|
|
1064
1483
|
{
|
|
1065
1484
|
field: {
|
|
@@ -1138,11 +1557,11 @@ Generated by [AVA](https://avajs.dev).
|
|
|
1138
1557
|
},
|
|
1139
1558
|
operation: 'invoke-direct',
|
|
1140
1559
|
registers: [
|
|
1560
|
+
0,
|
|
1561
|
+
1,
|
|
1562
|
+
2,
|
|
1141
1563
|
3,
|
|
1142
1564
|
3,
|
|
1143
|
-
2,
|
|
1144
|
-
1,
|
|
1145
|
-
0,
|
|
1146
1565
|
],
|
|
1147
1566
|
},
|
|
1148
1567
|
{
|
|
@@ -1153,8 +1572,8 @@ Generated by [AVA](https://avajs.dev).
|
|
|
1153
1572
|
},
|
|
1154
1573
|
operation: 'iput-object',
|
|
1155
1574
|
registers: [
|
|
1156
|
-
3,
|
|
1157
1575
|
0,
|
|
1576
|
+
3,
|
|
1158
1577
|
],
|
|
1159
1578
|
},
|
|
1160
1579
|
{
|
|
@@ -1165,8 +1584,8 @@ Generated by [AVA](https://avajs.dev).
|
|
|
1165
1584
|
},
|
|
1166
1585
|
operation: 'iget-object',
|
|
1167
1586
|
registers: [
|
|
1168
|
-
3,
|
|
1169
1587
|
0,
|
|
1588
|
+
3,
|
|
1170
1589
|
],
|
|
1171
1590
|
},
|
|
1172
1591
|
{
|
|
@@ -1251,8 +1670,8 @@ Generated by [AVA](https://avajs.dev).
|
|
|
1251
1670
|
},
|
|
1252
1671
|
operation: 'invoke-virtual',
|
|
1253
1672
|
registers: [
|
|
1254
|
-
2,
|
|
1255
1673
|
0,
|
|
1674
|
+
2,
|
|
1256
1675
|
],
|
|
1257
1676
|
},
|
|
1258
1677
|
{
|
|
@@ -1324,8 +1743,8 @@ Generated by [AVA](https://avajs.dev).
|
|
|
1324
1743
|
},
|
|
1325
1744
|
operation: 'invoke-super',
|
|
1326
1745
|
registers: [
|
|
1327
|
-
1,
|
|
1328
1746
|
0,
|
|
1747
|
+
1,
|
|
1329
1748
|
],
|
|
1330
1749
|
},
|
|
1331
1750
|
{
|
|
@@ -1601,8 +2020,8 @@ Generated by [AVA](https://avajs.dev).
|
|
|
1601
2020
|
},
|
|
1602
2021
|
operation: 'invoke-super',
|
|
1603
2022
|
registers: [
|
|
1604
|
-
2,
|
|
1605
2023
|
1,
|
|
2024
|
+
2,
|
|
1606
2025
|
],
|
|
1607
2026
|
},
|
|
1608
2027
|
{
|
|
@@ -1861,8 +2280,8 @@ Generated by [AVA](https://avajs.dev).
|
|
|
1861
2280
|
},
|
|
1862
2281
|
operation: 'invoke-virtual',
|
|
1863
2282
|
registers: [
|
|
1864
|
-
2,
|
|
1865
2283
|
0,
|
|
2284
|
+
2,
|
|
1866
2285
|
],
|
|
1867
2286
|
},
|
|
1868
2287
|
{
|
|
@@ -1946,8 +2365,8 @@ Generated by [AVA](https://avajs.dev).
|
|
|
1946
2365
|
},
|
|
1947
2366
|
operation: 'invoke-virtual',
|
|
1948
2367
|
registers: [
|
|
1949
|
-
2,
|
|
1950
2368
|
0,
|
|
2369
|
+
2,
|
|
1951
2370
|
],
|
|
1952
2371
|
},
|
|
1953
2372
|
{
|
|
@@ -2032,9 +2451,9 @@ Generated by [AVA](https://avajs.dev).
|
|
|
2032
2451
|
},
|
|
2033
2452
|
operation: 'invoke-virtual',
|
|
2034
2453
|
registers: [
|
|
2035
|
-
3,
|
|
2036
|
-
2,
|
|
2037
2454
|
0,
|
|
2455
|
+
2,
|
|
2456
|
+
3,
|
|
2038
2457
|
],
|
|
2039
2458
|
},
|
|
2040
2459
|
{
|
|
@@ -2098,8 +2517,8 @@ Generated by [AVA](https://avajs.dev).
|
|
|
2098
2517
|
},
|
|
2099
2518
|
operation: 'invoke-super',
|
|
2100
2519
|
registers: [
|
|
2101
|
-
3,
|
|
2102
2520
|
2,
|
|
2521
|
+
3,
|
|
2103
2522
|
],
|
|
2104
2523
|
},
|
|
2105
2524
|
{
|
|
@@ -2158,8 +2577,8 @@ Generated by [AVA](https://avajs.dev).
|
|
|
2158
2577
|
},
|
|
2159
2578
|
operation: 'invoke-virtual',
|
|
2160
2579
|
registers: [
|
|
2161
|
-
3,
|
|
2162
2580
|
1,
|
|
2581
|
+
3,
|
|
2163
2582
|
],
|
|
2164
2583
|
},
|
|
2165
2584
|
{
|
|
@@ -2182,8 +2601,8 @@ Generated by [AVA](https://avajs.dev).
|
|
|
2182
2601
|
},
|
|
2183
2602
|
operation: 'invoke-virtual',
|
|
2184
2603
|
registers: [
|
|
2185
|
-
3,
|
|
2186
2604
|
0,
|
|
2605
|
+
3,
|
|
2187
2606
|
],
|
|
2188
2607
|
},
|
|
2189
2608
|
{
|
|
@@ -2246,8 +2665,8 @@ Generated by [AVA](https://avajs.dev).
|
|
|
2246
2665
|
},
|
|
2247
2666
|
operation: 'invoke-super',
|
|
2248
2667
|
registers: [
|
|
2249
|
-
2,
|
|
2250
2668
|
1,
|
|
2669
|
+
2,
|
|
2251
2670
|
],
|
|
2252
2671
|
},
|
|
2253
2672
|
{
|
|
@@ -2285,8 +2704,8 @@ Generated by [AVA](https://avajs.dev).
|
|
|
2285
2704
|
},
|
|
2286
2705
|
operation: 'invoke-virtual',
|
|
2287
2706
|
registers: [
|
|
2288
|
-
2,
|
|
2289
2707
|
0,
|
|
2708
|
+
2,
|
|
2290
2709
|
],
|
|
2291
2710
|
},
|
|
2292
2711
|
{
|
|
@@ -2318,3 +2737,1171 @@ Generated by [AVA](https://avajs.dev).
|
|
|
2318
2737
|
staticValues: [],
|
|
2319
2738
|
superclass: 'Landroidx/activity/e;',
|
|
2320
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
|
+
}
|