Searched refs:nestedMethod (Results 1 – 22 of 22) sorted by relevance
| /arkcompiler/ets_frontend/ets2panda/linter/arkanalyzer/src/core/model/builder/ |
| D | BodyBuilder.ts | 78 const nestedMethod = childrenChain.parent; constant 79 let nestedGlobals = nestedMethod.getBodyBuilder()?.getGlobals(); 94 const nestedLocals = nestedMethod.getBody()?.getLocals(); 116 const nestedMethod = childrenChain.parent; constant 117 const nestedSignature = nestedMethod.getImplementationSignature(); 122 this.updateNestedMethodWithClosures(nestedMethod, closuresLocal); 124 this.moveCurrentMethodLocalToGlobal(nestedMethod); 132 const newBaseLocals = nestedMethod.getBody()?.getLocals(); 304 const nestedMethod = nestedChain.parent; constant 305 const params = nestedMethod.getSubSignature().getParameters(); [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ani/tests/object_ops/ |
| D | call_object_method_int_test.ets | 43 public nestedMethod(data1: int, data2: int): int
|
| D | call_object_method_byte_test.ets | 43 public nestedMethod(data1: byte, data2: byte): byte
|
| D | call_object_method_boolean_test.ets | 46 public nestedMethod(data1: byte, data2: byte): boolean
|
| D | call_object_method_char_test.ets | 43 public nestedMethod(data1: char, data2: int): char
|
| D | call_object_method_float_test.ets | 43 public nestedMethod(data1: float, data2: float): float
|
| D | call_object_method_double_test.ets | 48 public nestedMethod(data1: double, data2: double): double
|
| D | object_call_method_ref_test.ets | 49 public nestedMethod(data1: int, data2: int): String
|
| D | call_object_method_long_test.ets | 42 public nestedMethod(data1: long, data2: long): long
|
| D | call_object_method_void_test.ets | 50 public nestedMethod(data1: int, data2: int): void
|
| D | call_object_method_short_test.ets | 43 public nestedMethod(data1: short, data2: short): short
|
| D | object_call_method_by_name_double_test.ets | 62 public nestedMethod(value: double): double {
|
| D | object_call_method_by_name_long_test.ets | 62 public nestedMethod(value: long): long {
|
| D | object_call_method_by_name_int_test.ets | 61 public nestedMethod(value: int): int {
|
| D | object_call_method_by_name_short_test.ets | 61 public nestedMethod(value: short): short {
|
| D | object_call_method_by_name_byte_test.ets | 61 public nestedMethod(value: byte): byte {
|
| D | object_call_method_by_name_char_test.ets | 61 public nestedMethod(value: char): char {
|
| D | object_call_method_by_name_float_test.ets | 62 public nestedMethod(value: float): float {
|
| D | object_call_method_by_name_void_test.ets | 65 public nestedMethod(value: int): void {
|
| D | object_call_method_by_name_boolean_test.ets | 73 public nestedMethod(value: int): boolean {
|
| D | object_call_method_by_name_ref_test.ets | 74 public nestedMethod(value: int): string {
|
| /arkcompiler/ets_frontend/ets2panda/linter/arkanalyzer/src/core/base/ |
| D | Type.ts | 774 constructor(nestedMethod: MethodSignature, closures?: Local[]) { 776 this.nestedMethodSignature = nestedMethod;
|