Home
last modified time | relevance | path

Searched refs:setter (Results 1 – 25 of 91) sorted by relevance

1234

/arkcompiler/ets_runtime/test/sharedtest/definesendableclass/
Dexpect_output.txt15 age setter
17 sAge setter
21 age setter
23 sAge setter
28 age setter
30 sAge setter
35 age setter
37 sAge setter
/arkcompiler/ets_frontend/ets2panda/compiler/lowering/ets/
DinterfacePropertyDeclarations.cpp131 auto setter = GenerateGetterOrSetter(checker, prop->AsClassProperty(), true); in UpdateInterfacePropertys() local
132 newPropertyList.emplace_back(setter); in UpdateInterfacePropertys()
133 prevDecl->Node()->AsMethodDefinition()->AddOverload(setter); in UpdateInterfacePropertys()
142 auto setter = GenerateGetterOrSetter(checker, prop->AsClassProperty(), true); in UpdateInterfacePropertys() local
143 newPropertyList.emplace_back(setter); in UpdateInterfacePropertys()
144 getter->AddOverload(setter); in UpdateInterfacePropertys()
/arkcompiler/ets_frontend/ts2panda/src/expression/
DobjectLiteralExpression.ts161 let setter = <ts.SetAccessorDeclaration>prop.getSetter();
162 createMethodOrAccessor(pandaGen, compiler, objReg, setter);
163 pandaGen.storeAccumulator(setter, setterReg);
164 accessor = setter;
220 let setter = <ts.SetAccessorDeclaration>prop.getValue();
221 createMethodOrAccessor(pandaGen, compiler, objReg, setter);
222 pandaGen.storeAccumulator(setter, accessorReg);
223 …pandaGen.defineGetterSetterByValue(setter, objReg, keyReg, getVregisterCache(pandaGen, CacheList.U…
/arkcompiler/ets_runtime/test/aottest/vtable/base/
Dexpect_output.txt19 setter
25 setter
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/std/core/
DTypeMethodTest.ets133 test(!cMethod.isSetter(), " not setter") +
141 test(!getterMethod.isSetter(), " not setter") +
143 … test(setterMethod.getAttributes() == Attributes.SETTER, " setter attrib") +
149 test(setterMethod.isSetter(), " setter") +
157 … test(!createFileExtMethod.isSetter(), " not setter") +
165 … test(!abstractWriteMethod.isSetter(), " not setter") +
173 test(!closeMethod.isSetter(), " not setter")
/arkcompiler/ets_runtime/test/fuzztest/objectref_fuzzer/
Dobjectref_fuzzer.cpp43 Local<FunctionRef> setter = FunctionRef::New(vm, nativeFunc); in SetAccessorPropertyFuzzTest() local
45 object->SetAccessorProperty(vm, key, getter, setter); in SetAccessorPropertyFuzzTest()
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/test-lists/hermes/
Dhermes-ignored-JIT-ASAN-repeats.txt5 setter-stack-overflow.js
/arkcompiler/ets_runtime/ecmascript/
Daccessor_data.h61 JSNativePointer *setter = JSNativePointer::Cast(GetSetter().GetTaggedObject());
62 auto setFunc = reinterpret_cast<InternalSetFunc>(setter->GetExternalPointer());
/arkcompiler/ets_frontend/es2panda/test/parser/ts/
Dtest-class-definiton6-expected.txt1 SyntaxError: A get accessor must be at least as accessible as the setter [test-class-definiton6.ts:…
Dtest-class-definiton16-expected.txt1 SyntaxError: A get accessor must be at least as accessible as the setter [test-class-definiton16.ts…
Dtest-class-definiton15-expected.txt1 SyntaxError: A get accessor must be at least as accessible as the setter [test-class-definiton15.ts…
/arkcompiler/ets_frontend/ets2panda/test/parser/ts/
Dtest-class-definiton6-expected.txt1 SyntaxError: A get accessor must be at least as accessible as the setter [test-class-definiton6.ts:…
Dtest-class-definiton15-expected.txt1 SyntaxError: A get accessor must be at least as accessible as the setter [test-class-definiton15.ts…
Dtest-class-definiton16-expected.txt1 SyntaxError: A get accessor must be at least as accessible as the setter [test-class-definiton16.ts…
/arkcompiler/ets_runtime/ecmascript/tests/
Daccessor_data_test.cpp92 void *setter = nullptr; in HWTEST_F_L0() local
94 JSHandle<AccessorData> internalAccHancle = factory->NewInternalAccessor(setter, getter); in HWTEST_F_L0()
133 void *setter = nullptr; in HWTEST_F_L0() local
135 JSHandle<AccessorData> internalAccHandle = factory->NewInternalAccessor(setter, getter); in HWTEST_F_L0()
/arkcompiler/runtime_core/static_core/plugins/ets/doc/tutorial/
Dinterfaces.rst64 An interface property can be in a form of a field, a getter, a setter, or both.
66 A property field is just a shortcut notation of a getter/setter pair, and
92 The short notation implicitly defines a private field, and a getter and setter:
/arkcompiler/runtime_core/static_core/runtime/coroutines/
Dstackful_coroutine.cpp59 …PandaString setter = (Thread::GetCurrent() == nullptr) ? "null" : Coroutine::GetCurrent()->GetName… in SetStatus() local
60 …UTINES) << GetCoroutine()->GetName() << ": " << status_ << " -> " << newStatus << " by " << setter; in SetStatus()
Dthreaded_coroutine.cpp42 …PandaString setter = (Thread::GetCurrent() == nullptr) ? "null" : Coroutine::GetCurrent()->GetName… in SetStatus() local
43 …UTINES) << GetCoroutine()->GetName() << ": " << status_ << " -> " << newStatus << " by " << setter; in SetStatus()
/arkcompiler/ets_runtime/test/aottest/analyze_property/not_meet_subtyping/
Dexpect_output.txt14 setter
/arkcompiler/ets_frontend/es2panda/binder/
Dscope.cpp186 bool setter{false}; in GetPrivateProperty() local
196 setter = isSetter; in GetPrivateProperty()
197 getter = !setter; in GetPrivateProperty()
201 setter = !getter; in GetPrivateProperty()
212 return {slot, IsMethod(slot), IsStaticMethod(slot), getter, setter, validateMethodSlot}; in GetPrivateProperty()
/arkcompiler/ets_runtime/test/moduletest/calltype/
Dexpect_output.txt25 setter 555
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/07.accessor_declarations/
Dsetter_static_modifier.ets17 desc: Field setter with static modifier
Dsetter_with_value_type.ets17 desc: Field setter declaration with value type.
Dsetter_final_modifier.ets17 desc: Field setter with final modifier cant override..
Dsetter_private_modifier_out_class.ets17 desc: Field setter with private modifier. call out class

1234