Searched full:inheritance (Results 1 – 25 of 203) sorted by relevance
123456789
| /arkcompiler/ets_frontend/ets2panda/linter/test/ |
| D | sendable_class_inheritance.ts.json | 35 … "rule": "The inheritance for \"Sendable\" classes is limited (arkts-sendable-class-inheritance)" 41 … "rule": "The inheritance for \"Sendable\" classes is limited (arkts-sendable-class-inheritance)" 47 … "rule": "The inheritance for \"Sendable\" classes is limited (arkts-sendable-class-inheritance)" 53 … "rule": "The inheritance for \"Sendable\" classes is limited (arkts-sendable-class-inheritance)" 59 … "rule": "The inheritance for \"Sendable\" classes is limited (arkts-sendable-class-inheritance)" 65 … "rule": "The inheritance for \"Sendable\" classes is limited (arkts-sendable-class-inheritance)" 71 … "rule": "The inheritance for \"Sendable\" classes is limited (arkts-sendable-class-inheritance)" 77 … "rule": "The inheritance for \"Sendable\" classes is limited (arkts-sendable-class-inheritance)" 83 … "rule": "The inheritance for \"Sendable\" classes is limited (arkts-sendable-class-inheritance)" 89 … "rule": "The inheritance for \"Sendable\" classes is limited (arkts-sendable-class-inheritance)" [all …]
|
| D | structural_identity.sts | 108 fC(i); // ERR, no inheritance relation 109 fC(ci); // ERR, no inheritance relation 111 fC(ii); // ERR, no inheritance relation 112 fI(c); // ERR, no inheritance relation 115 fI(cc); // ERR, no inheritance relation 138 fC(dc); // ERR, no inheritance relation 139 fC(di); // ERR, no inheritance relation 140 fC(dci); // ERR, no inheritance relation 141 fC(dcc); // ERR, no inheritance relation 142 fC(dii); // ERR, no inheritance relation [all …]
|
| /arkcompiler/runtime_core/static_core/runtime/mem/gc/ |
| D | gc_scope.h | 39 …TIMING> : public trace::ScopedTrace, public ScopedTiming { // NOLINT(fuchsia-multiple-inheritance) 48 // NOLINTNEXTLINE(fuchsia-multiple-inheritance) 58 …IMING_PHASE> : public ScopedTiming, public GCScopedPhase { // NOLINT(fuchsia-multiple-inheritance) 67 …PHASE> : public trace::ScopedTrace, public GCScopedPhase { // NOLINT(fuchsia-multiple-inheritance)
|
| /arkcompiler/ets_frontend/ets2panda/linter/docs/rules/ |
| D | recipe19.md | 1 # Use inheritance instead of intersection types 7 Currently, ArkTS does not support intersection types. Use inheritance
|
| D | recipe132.md | 8 prototype inheritance in the language. This feature is considered not applicable 36 // Call parent's constructor, inheritance chain is static and
|
| /arkcompiler/runtime_core/static_core/plugins/ets/doc/spec/ |
| D | 10_interfaces.rst | 53 superinterfaces implement. The interface inheritance allows objects to 61 inheritance 161 inheritance 313 inheritance 339 inheritance 353 (see :ref:`Interface Inheritance`). 360 inheritance 470 inheritance 541 .. _Interface Inheritance: 543 Interface Inheritance [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/spec/09.classes/Inheritance/ |
| D | subtypingWithFunctionsRequiresExplicitType_01.sts | 17 desc: 9.6.9 Inheritance 18 name: 09.classes/09.06.method_declarations/09.06.9.inheritance/subtypingWithFunctionsRequiresExplic…
|
| D | subtypingWithFunctionsRequiresExplicitType_02.sts | 17 desc: 9.6.9 Inheritance 18 name: 09.classes/09.06.method_declarations/09.06.9.inheritance/subtypingWithFunctionsRequiresExplic…
|
| D | subtypingWithFunctionsRequiresExplicitType_03.sts | 17 desc: 9.6.9 Inheritance 18 name: 09.classes/09.06.method_declarations/09.06.9.inheritance/subtypingWithFunctionsRequiresExplic…
|
| /arkcompiler/ets_frontend/es2panda/test/bytecode_file_size_comparison/test_cases/java_test_framework/java_cases/ |
| D | InheritanceTest.java | 83 * Inheritance Test 89 // Test the inheritance in main()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/03.types/08.reference_types/02.object_class_type/ |
| D | object_methods.params.yaml | 14 --- # List of inheritance methods from Object class
|
| D | class_methods.params.yaml | 14 --- # List of inheritance methods from Object class
|
| D | object_methods.sts | 19 desc: Inheritance methods from Object class.
|
| D | class_methods.sts | 19 desc: Inheritance methods from Object class.
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/spec/10.Interfaces/ |
| D | method_overiding_0000.sts | 17 desc: 10.6.2 Inheritance and Overriding
|
| D | method_overiding_0002.sts | 17 desc: 10.6.2 Inheritance and Overriding
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/instanceof/ |
| D | instanceof.sts | 136 // TODO(v.cherkashin): Enable when inheritance from declared type will be implemented, #13552 169 // TODO(v.cherkashin): Enable when inheritance from declared type will be implemented, #13552 189 // TODO(v.cherkashin): Enable when inheritance from declared type will be implemented, #13552 256 // TODO(v.cherkashin): Enable when inheritance with declared type will be implemented, #13552
|
| /arkcompiler/ets_frontend/ets2panda/test/ast/parser/ets/ |
| D | inheritance-cyclic.sts | 21 /* @@? 16:7 Error TypeError: Cyclic inheritance involving A. */
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_warnings_tests/suggest_final_tests/ |
| D | suggest_final_for_classes_2.sts | 15 class I { // No final - inheritance
|
| /arkcompiler/ets_frontend/ets2panda/linter/test_rules/ |
| D | rule19.ts.json | 22 "rule": "Use inheritance instead of intersection types (arkts-no-intersection-types)"
|
| /arkcompiler/ets_frontend/ets2panda/test/parser/ets/ |
| D | inheritance.sts | 36 export class inheritance extends base_class {
|
| /arkcompiler/ets_frontend/ets2panda/test/unit/public/ |
| D | ast_verifier_check_infinite_loop_test.cpp | 31 // NOLINTNEXTLINE(fuchsia-multiple-inheritance) 34 // NOLINTNEXTLINE(fuchsia-multiple-inheritance)
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/01.class_declaration/class_modifiers_inner_classes_and_static_classes/ |
| D | inner_class_inherit_static_member.sts | 17 desc: Declaring inner class with inheritance static member.
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/10.interfaces/04.interface_members/ |
| D | hided_members.sts | 18 desc: Hide inheritance members.
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/01.class_declaration/02.final_classes/ |
| D | final_class_declaration_and_inheritance.sts | 17 desc: Declaration of a final class and inheritance from a parent class
|
123456789