Home
last modified time | relevance | path

Searched refs:testMethod (Results 1 – 12 of 12) sorted by relevance

/arkcompiler/ets_frontend/ets2panda/test/compiler/ets/
DthrowingFunctionCheck6.sts21 testMethod(): void throws {
31 testClass.testMethod();
DrethrowingMethodCheck3.sts17 testMethod(f: () => void throws): void rethrows {}
26 testClass.testMethod(TestFunction);
DrethrowingMethodCheck3-expected.txt29 "name": "testMethod",
53 "name": "testMethod",
717 "name": "testMethod",
DthrowingFunctionCheck6-expected.txt29 "name": "testMethod",
53 "name": "testMethod",
841 "name": "testMethod",
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/spec/03.types/References_Types/3.8.12.Nullish_Types/
Dnullable-method-default-param_6.sts23 testMethod(required: String, param: (Int | null) = 42): void {
31 new TestC().testMethod("Hello World");
Dnullable-method-default-param_0.sts23 testMethod(required: String, param: (Int | null) = 100): void {
31 new TestC().testMethod("Hello World", null);
/arkcompiler/ets_frontend/ets2panda/test/ast/compiler/ets/
DthrowingMethodCheck1.sts17 testMethod(): void throws {
25 testClass.testMethod();
DrethrowingMethodCheck1.sts17 testMethod(f: () => void throws): void rethrows {}
25 testClass.testMethod(TestFunction);
DthrowingMethodCheck2.sts17 testMethod(): void throws {
26 testClass.testMethod();
DrethrowingMethodCheck2.sts17 testMethod(f: () => void throws): void rethrows {}
25 testClass.testMethod(TestFunction);
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/std/core/
DTypeMethodTest.sts114 function testMethod() {
180 failures += testMethod()
/arkcompiler/runtime_core/static_core/libpandafile/tests/
Dfile_item_container_test.cpp1009 std::function<bool(BaseItem *)> testMethod = [&](BaseItem *method) { in TEST() local
1019 panda_file::BaseItem::VisitorCallBack cbMethod = testMethod; in TEST()