arkanalyzer 1.0.7 → 1.0.9

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 (164) hide show
  1. package/config/arkanalyzer.json +8 -0
  2. package/lib/Config.d.ts +9 -1
  3. package/lib/Config.d.ts.map +1 -1
  4. package/lib/Config.js +24 -11
  5. package/lib/Scene.d.ts +49 -42
  6. package/lib/Scene.d.ts.map +1 -1
  7. package/lib/Scene.js +124 -93
  8. package/lib/callgraph/algorithm/AbstractAnalysis.js +1 -1
  9. package/lib/callgraph/common/Statistics.js +1 -1
  10. package/lib/callgraph/model/CallGraph.d.ts +3 -2
  11. package/lib/callgraph/model/CallGraph.d.ts.map +1 -1
  12. package/lib/callgraph/model/CallGraph.js +15 -5
  13. package/lib/callgraph/model/builder/CallGraphBuilder.js +1 -1
  14. package/lib/callgraph/pointerAnalysis/Pag.d.ts +35 -8
  15. package/lib/callgraph/pointerAnalysis/Pag.d.ts.map +1 -1
  16. package/lib/callgraph/pointerAnalysis/Pag.js +89 -8
  17. package/lib/callgraph/pointerAnalysis/PagBuilder.d.ts +32 -5
  18. package/lib/callgraph/pointerAnalysis/PagBuilder.d.ts.map +1 -1
  19. package/lib/callgraph/pointerAnalysis/PagBuilder.js +378 -83
  20. package/lib/callgraph/pointerAnalysis/PointerAnalysis.d.ts +3 -0
  21. package/lib/callgraph/pointerAnalysis/PointerAnalysis.d.ts.map +1 -1
  22. package/lib/callgraph/pointerAnalysis/PointerAnalysis.js +71 -18
  23. package/lib/core/base/Constant.d.ts +25 -5
  24. package/lib/core/base/Constant.d.ts.map +1 -1
  25. package/lib/core/base/Constant.js +46 -8
  26. package/lib/core/base/Expr.d.ts +45 -40
  27. package/lib/core/base/Expr.d.ts.map +1 -1
  28. package/lib/core/base/Expr.js +236 -150
  29. package/lib/core/base/Local.d.ts +2 -2
  30. package/lib/core/base/Local.d.ts.map +1 -1
  31. package/lib/core/base/Local.js +2 -2
  32. package/lib/core/base/Ref.d.ts +38 -37
  33. package/lib/core/base/Ref.d.ts.map +1 -1
  34. package/lib/core/base/Ref.js +102 -70
  35. package/lib/core/base/Stmt.d.ts +4 -0
  36. package/lib/core/base/Stmt.d.ts.map +1 -1
  37. package/lib/core/base/Stmt.js +12 -1
  38. package/lib/core/base/Type.d.ts +4 -0
  39. package/lib/core/base/Type.d.ts.map +1 -1
  40. package/lib/core/base/Type.js +41 -17
  41. package/lib/core/common/ArkError.d.ts +15 -0
  42. package/lib/core/common/ArkError.d.ts.map +1 -0
  43. package/lib/core/common/ArkError.js +28 -0
  44. package/lib/core/common/ArkIRTransformer.d.ts +1 -1
  45. package/lib/core/common/ArkIRTransformer.d.ts.map +1 -1
  46. package/lib/core/common/ArkIRTransformer.js +24 -8
  47. package/lib/core/common/CfgBuilder.d.ts.map +1 -1
  48. package/lib/core/common/CfgBuilder.js +5 -0
  49. package/lib/core/common/Const.d.ts +15 -10
  50. package/lib/core/common/Const.d.ts.map +1 -1
  51. package/lib/core/common/Const.js +18 -11
  52. package/lib/core/common/DummyMainCreater.d.ts +2 -1
  53. package/lib/core/common/DummyMainCreater.d.ts.map +1 -1
  54. package/lib/core/common/DummyMainCreater.js +28 -15
  55. package/lib/core/common/EtsConst.d.ts +1 -0
  56. package/lib/core/common/EtsConst.d.ts.map +1 -1
  57. package/lib/core/common/EtsConst.js +2 -1
  58. package/lib/core/common/IRUtils.d.ts +6 -0
  59. package/lib/core/common/IRUtils.d.ts.map +1 -1
  60. package/lib/core/common/IRUtils.js +29 -2
  61. package/lib/core/common/ModelUtils.d.ts +1 -0
  62. package/lib/core/common/ModelUtils.d.ts.map +1 -1
  63. package/lib/core/common/ModelUtils.js +32 -32
  64. package/lib/core/common/TSConst.d.ts +10 -3
  65. package/lib/core/common/TSConst.d.ts.map +1 -1
  66. package/lib/core/common/TSConst.js +11 -4
  67. package/lib/core/common/TypeInference.d.ts +8 -2
  68. package/lib/core/common/TypeInference.d.ts.map +1 -1
  69. package/lib/core/common/TypeInference.js +218 -87
  70. package/lib/core/common/ValueUtil.d.ts +0 -4
  71. package/lib/core/common/ValueUtil.d.ts.map +1 -1
  72. package/lib/core/common/ValueUtil.js +8 -25
  73. package/lib/core/dataflow/DataflowSolver.d.ts.map +1 -1
  74. package/lib/core/dataflow/DataflowSolver.js +2 -4
  75. package/lib/core/dataflow/TiantAnalysis.js +2 -1
  76. package/lib/core/dataflow/Util.d.ts +1 -1
  77. package/lib/core/dataflow/Util.d.ts.map +1 -1
  78. package/lib/core/dataflow/Util.js +8 -7
  79. package/lib/core/graph/BasicBlock.d.ts +41 -0
  80. package/lib/core/graph/BasicBlock.d.ts.map +1 -1
  81. package/lib/core/graph/BasicBlock.js +132 -1
  82. package/lib/core/graph/Cfg.d.ts +30 -1
  83. package/lib/core/graph/Cfg.d.ts.map +1 -1
  84. package/lib/core/graph/Cfg.js +129 -6
  85. package/lib/core/graph/builder/ViewTreeBuilder.d.ts.map +1 -1
  86. package/lib/core/graph/builder/ViewTreeBuilder.js +3 -2
  87. package/lib/core/model/ArkBaseModel.d.ts +8 -0
  88. package/lib/core/model/ArkBaseModel.d.ts.map +1 -1
  89. package/lib/core/model/ArkBaseModel.js +55 -3
  90. package/lib/core/model/ArkClass.d.ts +36 -30
  91. package/lib/core/model/ArkClass.d.ts.map +1 -1
  92. package/lib/core/model/ArkClass.js +78 -39
  93. package/lib/core/model/ArkExport.d.ts +3 -0
  94. package/lib/core/model/ArkExport.d.ts.map +1 -1
  95. package/lib/core/model/ArkExport.js +10 -0
  96. package/lib/core/model/ArkField.d.ts +2 -0
  97. package/lib/core/model/ArkField.d.ts.map +1 -1
  98. package/lib/core/model/ArkField.js +3 -0
  99. package/lib/core/model/ArkFile.d.ts +4 -0
  100. package/lib/core/model/ArkFile.d.ts.map +1 -1
  101. package/lib/core/model/ArkFile.js +20 -0
  102. package/lib/core/model/ArkImport.d.ts +2 -0
  103. package/lib/core/model/ArkImport.d.ts.map +1 -1
  104. package/lib/core/model/ArkImport.js +3 -0
  105. package/lib/core/model/ArkMetadata.d.ts +20 -0
  106. package/lib/core/model/ArkMetadata.d.ts.map +1 -0
  107. package/lib/core/model/ArkMetadata.js +44 -0
  108. package/lib/core/model/ArkMethod.d.ts +156 -53
  109. package/lib/core/model/ArkMethod.d.ts.map +1 -1
  110. package/lib/core/model/ArkMethod.js +309 -54
  111. package/lib/core/model/ArkNamespace.d.ts +4 -0
  112. package/lib/core/model/ArkNamespace.d.ts.map +1 -1
  113. package/lib/core/model/ArkNamespace.js +13 -0
  114. package/lib/core/model/ArkSignature.d.ts +11 -5
  115. package/lib/core/model/ArkSignature.d.ts.map +1 -1
  116. package/lib/core/model/ArkSignature.js +38 -18
  117. package/lib/core/model/builder/ArkClassBuilder.d.ts +0 -1
  118. package/lib/core/model/builder/ArkClassBuilder.d.ts.map +1 -1
  119. package/lib/core/model/builder/ArkClassBuilder.js +9 -34
  120. package/lib/core/model/builder/ArkExportBuilder.d.ts.map +1 -1
  121. package/lib/core/model/builder/ArkExportBuilder.js +6 -1
  122. package/lib/core/model/builder/ArkFieldBuilder.d.ts.map +1 -1
  123. package/lib/core/model/builder/ArkFieldBuilder.js +3 -0
  124. package/lib/core/model/builder/ArkFileBuilder.js +1 -1
  125. package/lib/core/model/builder/ArkImportBuilder.d.ts +2 -1
  126. package/lib/core/model/builder/ArkImportBuilder.d.ts.map +1 -1
  127. package/lib/core/model/builder/ArkImportBuilder.js +12 -5
  128. package/lib/core/model/builder/ArkMethodBuilder.d.ts +2 -1
  129. package/lib/core/model/builder/ArkMethodBuilder.d.ts.map +1 -1
  130. package/lib/core/model/builder/ArkMethodBuilder.js +87 -47
  131. package/lib/core/model/builder/ArkNamespaceBuilder.d.ts.map +1 -1
  132. package/lib/core/model/builder/ArkNamespaceBuilder.js +2 -0
  133. package/lib/core/model/builder/builderUtils.d.ts.map +1 -1
  134. package/lib/core/model/builder/builderUtils.js +25 -2
  135. package/lib/save/source/SourceClass.d.ts.map +1 -1
  136. package/lib/save/source/SourceClass.js +4 -0
  137. package/lib/save/source/SourceField.d.ts.map +1 -1
  138. package/lib/save/source/SourceField.js +4 -0
  139. package/lib/save/source/SourceMethod.d.ts.map +1 -1
  140. package/lib/save/source/SourceMethod.js +7 -0
  141. package/lib/save/source/SourceModule.d.ts.map +1 -1
  142. package/lib/save/source/SourceModule.js +14 -9
  143. package/lib/save/source/SourceNamespace.d.ts.map +1 -1
  144. package/lib/save/source/SourceNamespace.js +4 -0
  145. package/lib/save/source/SourceStmt.d.ts.map +1 -1
  146. package/lib/save/source/SourceStmt.js +15 -3
  147. package/lib/save/source/SourceTransformer.d.ts +6 -0
  148. package/lib/save/source/SourceTransformer.d.ts.map +1 -1
  149. package/lib/save/source/SourceTransformer.js +72 -41
  150. package/lib/save/source/SourceUtils.d.ts.map +1 -1
  151. package/lib/save/source/SourceUtils.js +3 -2
  152. package/lib/transformer/StaticSingleAssignmentFormer.js +1 -1
  153. package/lib/utils/CfgStructualAnalysis.d.ts +1 -0
  154. package/lib/utils/CfgStructualAnalysis.d.ts.map +1 -1
  155. package/lib/utils/CfgStructualAnalysis.js +41 -7
  156. package/lib/utils/callGraphUtils.d.ts.map +1 -1
  157. package/lib/utils/callGraphUtils.js +7 -10
  158. package/lib/utils/crypto_utils.d.ts +6 -0
  159. package/lib/utils/crypto_utils.d.ts.map +1 -0
  160. package/lib/utils/crypto_utils.js +57 -0
  161. package/lib/utils/getAllFiles.d.ts +1 -1
  162. package/lib/utils/getAllFiles.d.ts.map +1 -1
  163. package/lib/utils/getAllFiles.js +4 -5
  164. package/package.json +3 -2
@@ -1,5 +1,5 @@
1
1
  import { Stmt } from '../base/Stmt';
2
- import { GenericType } from '../base/Type';
2
+ import { GenericType, Type } from '../base/Type';
3
3
  import { Value } from '../base/Value';
4
4
  import { Cfg } from '../graph/Cfg';
5
5
  import { ViewTree } from '../graph/ViewTree';
@@ -8,17 +8,21 @@ import { ArkClass } from './ArkClass';
8
8
  import { MethodSignature } from './ArkSignature';
9
9
  import { BodyBuilder } from '../common/BodyBuilder';
10
10
  import { ArkExport, ExportType } from './ArkExport';
11
+ import { LineCol } from '../base/Position';
11
12
  import { ArkBaseModel } from './ArkBaseModel';
13
+ import { ArkError } from '../common/ArkError';
12
14
  export declare const arkMethodNodeKind: string[];
13
15
  /**
14
16
  * @category core/model
15
17
  */
16
18
  export declare class ArkMethod extends ArkBaseModel implements ArkExport {
17
19
  private code?;
18
- private lineCol;
19
20
  private declaringArkClass;
20
21
  private genericTypes?;
21
- private methodSignature;
22
+ private methodDeclareSignatures?;
23
+ private methodDeclareLineCols?;
24
+ private methodSignature?;
25
+ private lineCol?;
22
26
  private body?;
23
27
  private viewTree?;
24
28
  private bodyBuilder?;
@@ -33,10 +37,70 @@ export declare class ArkMethod extends ArkBaseModel implements ArkExport {
33
37
  */
34
38
  getCode(): string | undefined;
35
39
  setCode(code: string): void;
36
- getLine(): number;
40
+ /**
41
+ * Get all lines of the method's declarations or null if the method has no seperated declaration.
42
+ * @returns null or the lines of the method's declarations with number type.
43
+ */
44
+ getDeclareLines(): number[] | null;
45
+ /**
46
+ * Get all columns of the method's declarations or null if the method has no seperated declaration.
47
+ * @returns null or the columns of the method's declarations with number type.
48
+ */
49
+ getDeclareColumns(): number[] | null;
50
+ /**
51
+ * Set lines and columns of the declarations with number type inputs and then encoded them to LineCol type.
52
+ * The length of lines and columns should be the same otherwise they cannot be encoded together.
53
+ * @param lines - the number of lines.
54
+ * @param columns - the number of columns.
55
+ * @returns
56
+ */
57
+ setDeclareLinesAndCols(lines: number[], columns: number[]): void;
58
+ /**
59
+ * Set lineCols of the declarations directly with LineCol type input.
60
+ * @param lineCols - the encoded lines and columns with LineCol type.
61
+ * @returns
62
+ */
63
+ setDeclareLineCols(lineCols: LineCol[]): void;
64
+ /**
65
+ * Get encoded lines and columns of the method's declarations or null if the method has no seperated declaration.
66
+ * @returns null or the encoded lines and columns of the method's declarations with LineCol type.
67
+ */
68
+ getDeclareLineCols(): LineCol[] | null;
69
+ /**
70
+ * Get line of the method's implementation or null if the method has no implementation.
71
+ * @returns null or the number of the line.
72
+ */
73
+ getLine(): number | null;
74
+ /**
75
+ * Set line of the implementation with line number input.
76
+ * The line number will be encoded together with the original column number.
77
+ * @param line - the line number of the method implementation.
78
+ * @returns
79
+ */
37
80
  setLine(line: number): void;
38
- getColumn(): number;
81
+ /**
82
+ * Get column of the method's implementation or null if the method has no implementation.
83
+ * @returns null or the number of the column.
84
+ */
85
+ getColumn(): number | null;
86
+ /**
87
+ * Set column of the implementation with column number input.
88
+ * The column number will be encoded together with the original line number.
89
+ * @param column - the column number of the method implementation.
90
+ * @returns
91
+ */
39
92
  setColumn(column: number): void;
93
+ /**
94
+ * Get encoded line and column of the method's implementation or null if the method has no implementation.
95
+ * @returns null or the encoded line and column of the method's implementation with LineCol type.
96
+ */
97
+ getLineCol(): LineCol | null;
98
+ /**
99
+ * Set lineCol of the implementation directly with LineCol type input.
100
+ * @param lineCol - the encoded line and column with LineCol type.
101
+ * @returns
102
+ */
103
+ setLineCol(lineCol: LineCol): void;
40
104
  /**
41
105
  * Returns the declaring class of the method.
42
106
  * @returns The declaring class of the method.
@@ -47,27 +111,64 @@ export declare class ArkMethod extends ArkBaseModel implements ArkExport {
47
111
  isDefaultArkMethod(): boolean;
48
112
  isAnonymousMethod(): boolean;
49
113
  getParameters(): import("./builder/ArkMethodBuilder").MethodParameter[];
50
- getReturnType(): import("../base/Type").Type;
114
+ getReturnType(): Type;
115
+ /**
116
+ * Get all declare signatures.
117
+ * The results could be null if there is no seperated declaration of the method.
118
+ * @returns null or the method declare signatures.
119
+ */
120
+ getDeclareSignatures(): MethodSignature[] | null;
121
+ /**
122
+ * Get the index of the matched method declare signature among all declare signatures.
123
+ * The index will be -1 if there is no matched signature found.
124
+ * @param targetSignature - the target declare signature want to search.
125
+ * @returns -1 or the index of the matched signature.
126
+ */
127
+ getDeclareSignatureIndex(targetSignature: MethodSignature): number;
51
128
  /**
52
- * <font color="red">?建议明确返回类型?</font>
53
- * Get the method signature. It includes two fields. one is ClassSignature,
54
- * the other is MethodSubSignature. The former indicates what class this method belong to,
55
- * the latter indicates the detail info of this method,
56
- * such as method name, parameters, returnType, etc.
129
+ * Get the method signature of the implementation.
130
+ * The signature could be null if the method is only a declaration which body is undefined.
131
+ * @returns null or the method implementation signature.
132
+ */
133
+ getImplementationSignature(): MethodSignature | null;
134
+ /**
135
+ * Get the method signature of the implementation or the first declaration if there is no implementation.
136
+ * For a method, the implementation and declaration signatures must not be undefined at the same time.
137
+ * A {@link MethodSignature} includes:
138
+ * - Class Signature: indicates which class this method belong to.
139
+ * - Method SubSignature: indicates the detail info of this method such as method name, parameters, returnType, etc.
57
140
  * @returns The method signature.
58
141
  * @example
59
- * 1. New a body.
142
+ * 1. Get the signature of method mtd.
60
143
 
61
- ```typescript
62
- let mtd = new ArkMethod();
63
- // ... ...
64
- let mtd = mtd.getSignature();
65
- // ... ...
66
- ```
144
+ ```typescript
145
+ let signature = mtd.getSignature();
146
+ // ... ...
147
+ ```
67
148
  */
68
149
  getSignature(): MethodSignature;
69
- getAllSignature(): MethodSignature[];
70
- setSignature(methodSignature: MethodSignature | MethodSignature[]): void;
150
+ /**
151
+ * Set signatures of all declarations.
152
+ * It will reset the declaration signatures if they are already defined before.
153
+ * @param signatures - one signature or a list of signatures.
154
+ * @returns
155
+ */
156
+ setDeclareSignatures(signatures: MethodSignature | MethodSignature[]): void;
157
+ /**
158
+ * Reset signature of one declaration with the specified index.
159
+ * Will do nothing if the index doesn't exist.
160
+ * @param signature - new signature want to set.
161
+ * @param index - index of signature want to set.
162
+ * @returns
163
+ */
164
+ setDeclareSignatureWithIndex(signature: MethodSignature, index: number): void;
165
+ /**
166
+ * Set signature of implementation.
167
+ * It will reset the implementation signature if it is already defined before.
168
+ * @param signature - signature of implementation.
169
+ * @returns
170
+ */
171
+ setImplementationSignature(signature: MethodSignature): void;
71
172
  getSubSignature(): import("./ArkSignature").MethodSubSignature;
72
173
  getGenericTypes(): GenericType[] | undefined;
73
174
  isGenericsMethod(): boolean;
@@ -82,17 +183,17 @@ export declare class ArkMethod extends ArkBaseModel implements ArkExport {
82
183
  * @example
83
184
  * 1. Get cfg or stmt through ArkBody.
84
185
 
85
- ```typescript
86
- let cfg = this.scene.getMethod()?.getBody().getCfg();
87
- const body = arkMethod.getBody()
88
- ```
186
+ ```typescript
187
+ let cfg = this.scene.getMethod()?.getBody().getCfg();
188
+ const body = arkMethod.getBody()
189
+ ```
89
190
 
90
- 2. Get local variable through ArkBody.
191
+ 2. Get local variable through ArkBody.
91
192
 
92
- ```typescript
93
- arkClass.getDefaultArkMethod()?.getBody().getLocals.forEach(local=>{...})
94
- let locals = arkFile().getDefaultClass().getDefaultArkMethod()?.getBody()?.getLocals();
95
- ```
193
+ ```typescript
194
+ arkClass.getDefaultArkMethod()?.getBody().getLocals.forEach(local=>{...})
195
+ let locals = arkFile().getDefaultClass().getDefaultArkMethod()?.getBody()?.getLocals();
196
+ ```
96
197
  */
97
198
  getBody(): ArkBody | undefined;
98
199
  setBody(body: ArkBody): void;
@@ -104,32 +205,32 @@ export declare class ArkMethod extends ArkBaseModel implements ArkExport {
104
205
  * @example
105
206
  * 1. get stmt through ArkBody cfg.
106
207
 
107
- ```typescript
108
- body = arkMethod.getBody();
109
- const cfg = body.getCfg();
110
- for (const threeAddressStmt of cfg.getStmts()) {
111
- ... ...
112
- }
113
- ```
208
+ ```typescript
209
+ body = arkMethod.getBody();
210
+ const cfg = body.getCfg();
211
+ for (const threeAddressStmt of cfg.getStmts()) {
212
+ ... ...
213
+ }
214
+ ```
114
215
 
115
- 2. get blocks through ArkBody cfg.
216
+ 2. get blocks through ArkBody cfg.
116
217
 
117
- ```typescript
118
- const body = arkMethod.getBody();
119
- const blocks = [...body.getCfg().getBlocks()];
120
- for (let i=0; i<blocks.length; i++) {
121
- const block = blocks[i];
122
- ... ...
123
- for (const stmt of block.getStmts()) {
124
- ... ...
125
- }
126
- let text = "next;"
127
- for (const next of block.getSuccessors()) {
128
- text += blocks.indexOf(next) + ' ';
129
- }
130
- // ... ...
131
- }
132
- ```
218
+ ```typescript
219
+ const body = arkMethod.getBody();
220
+ const blocks = [...body.getCfg().getBlocks()];
221
+ for (let i=0; i<blocks.length; i++) {
222
+ const block = blocks[i];
223
+ ... ...
224
+ for (const stmt of block.getStmts()) {
225
+ ... ...
226
+ }
227
+ let text = "next;"
228
+ for (const next of block.getSuccessors()) {
229
+ text += blocks.indexOf(next) + ' ';
230
+ }
231
+ // ... ...
232
+ }
233
+ ```
133
234
  */
134
235
  getCfg(): Cfg | undefined;
135
236
  getOriginalCfg(): Cfg | undefined;
@@ -146,5 +247,7 @@ export declare class ArkMethod extends ArkBaseModel implements ArkExport {
146
247
  setIsGeneratedFlag(isGeneratedFlag: boolean): void;
147
248
  getAsteriskToken(): boolean;
148
249
  setAsteriskToken(asteriskToken: boolean): void;
250
+ validate(): ArkError;
251
+ matchMethodSignature(args: Type[]): MethodSignature;
149
252
  }
150
253
  //# sourceMappingURL=ArkMethod.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ArkMethod.d.ts","sourceRoot":"","sources":["../../../src/core/model/ArkMethod.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAgC,IAAI,EAAE,MAAM,cAAc,CAAC;AAClE,OAAO,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAC3C,OAAO,EAAE,KAAK,EAAE,MAAM,eAAe,CAAC;AACtC,OAAO,EAAE,GAAG,EAAE,MAAM,cAAc,CAAC;AACnC,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAC7C,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AACjD,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AACpD,OAAO,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAGpD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C,eAAO,MAAM,iBAAiB,UACqF,CAAC;AAEpH;;GAEG;AACH,qBAAa,SAAU,SAAQ,YAAa,YAAW,SAAS;IAC5D,OAAO,CAAC,IAAI,CAAC,CAAS;IACtB,OAAO,CAAC,OAAO,CAAc;IAE7B,OAAO,CAAC,iBAAiB,CAAY;IAErC,OAAO,CAAC,YAAY,CAAC,CAAgB;IAErC,OAAO,CAAC,eAAe,CAAqB;IAE5C,OAAO,CAAC,IAAI,CAAC,CAAU;IACvB,OAAO,CAAC,QAAQ,CAAC,CAAW;IAE5B,OAAO,CAAC,WAAW,CAAC,CAAc;IAElC,OAAO,CAAC,eAAe,CAAkB;IACzC,OAAO,CAAC,aAAa,CAAkB;;IAMvC,aAAa,IAAI,UAAU;IAIpB,OAAO;IAId;;;OAGG;IACI,OAAO;IAIP,OAAO,CAAC,IAAI,EAAE,MAAM;IAIpB,OAAO;IAIP,OAAO,CAAC,IAAI,EAAE,MAAM;IAIpB,SAAS;IAIT,SAAS,CAAC,MAAM,EAAE,MAAM;IAI/B;;;OAGG;IACI,oBAAoB;IAIpB,oBAAoB,CAAC,iBAAiB,EAAE,QAAQ;IAIhD,mBAAmB;IAInB,kBAAkB,IAAI,OAAO;IAI7B,iBAAiB,IAAI,OAAO;IAI5B,aAAa;IAIb,aAAa;IAIpB;;;;;;;;;;;;;;;;OAgBG;IACI,YAAY,IAAI,eAAe;IAI/B,eAAe,IAAI,eAAe,EAAE;IAIpC,YAAY,CAAC,eAAe,EAAE,eAAe,GAAG,eAAe,EAAE;IAQjE,eAAe;IAIf,eAAe,IAAI,WAAW,EAAE,GAAG,SAAS;IAI5C,gBAAgB,IAAI,OAAO;IAI3B,eAAe,CAAC,YAAY,EAAE,WAAW,EAAE,GAAG,IAAI;IAIlD,cAAc,IAAI,WAAW,GAAG,SAAS;IAIhD;;;;;;;;;;;;;;;;;;;;OAoBG;IACI,OAAO,IAAI,OAAO,GAAG,SAAS;IAI9B,OAAO,CAAC,IAAI,EAAE,OAAO;IAI5B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAkCG;IACI,MAAM,IAAI,GAAG,GAAG,SAAS;IAIzB,cAAc,IAAI,GAAG,GAAG,SAAS;IAIjC,qBAAqB,IAAI,KAAK,EAAE;IAqBhC,eAAe,IAAI,KAAK,GAAG,IAAI;IAiB/B,eAAe,IAAI,KAAK,EAAE;IAgB1B,aAAa,IAAI,IAAI,EAAE;IAIvB,WAAW,CAAC,QAAQ,EAAE,QAAQ;IAI9B,WAAW,IAAI,QAAQ,GAAG,SAAS;IAInC,WAAW,IAAI,OAAO;IAItB,cAAc,CAAC,WAAW,EAAE,WAAW;IAOvC,SAAS;IAYT,WAAW,IAAI,OAAO;IAItB,kBAAkB,CAAC,eAAe,EAAE,OAAO;IAI3C,gBAAgB,IAAI,OAAO;IAI3B,gBAAgB,CAAC,aAAa,EAAE,OAAO;CAGjD"}
1
+ {"version":3,"file":"ArkMethod.d.ts","sourceRoot":"","sources":["../../../src/core/model/ArkMethod.ts"],"names":[],"mappings":"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"}