Home
last modified time | relevance | path

Searched full:accessible (Results 1 – 25 of 162) sorted by relevance

1234567

/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/09.field_access_expressions/01.accessing_current_object_fields/
Dincorrect_class_field_access.params.yaml16 …- { init: "let c: A = new A();", check: "c.a1.a2 = 1;", text: "names several accessible member fie…
17 …- { init: "let c: B = new B();", check: "c.i1.a1 = 1;", text: "names several accessible member fie…
18 …- { init: "let c: B = new B();", check: "c.b1.a1 = 1;", text: "names several accessible member fie…
19 …- { init: "let c: A = new A();", check: "c.b1 = 1;", text: "does not name an accessible member fie…
20 …- { init: "let c: A = new A();", check: "c.pb2 = 1;", text: "does not name an accessible member fi…
21 …- { init: "let c: B = new B();", check: "c.pb2 = 1;", text: "does not name an accessible member fi…
22 …- { init: "let c: B = new B();", check: "c.pa3 = 1;", text: "does not name an accessible member fi…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/13.compilation_units/04.standard_library_usage/
Dstdlib_default_import.ets21 are accessible as simple names (see Accessible) in any compilation unit.
Dcore_default_import.ets21 are accessible as simple names (see Accessible) in any compilation unit.
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/15.semantic_rules/07.overloading_and_overriding/03.overloading_for_functions/
Dfunction_argument_equivalent_neg_n2.ets21 name are accessible (see Accessible) in a scope (see Scopes).
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/10.interfaces/07.interface_inheritance/
Dinheritance_static_private_method.ets18 assert: Private methods defined in superinterfaces are not accessible (see Accessible) in the inter…
/arkcompiler/runtime_core/static_core/plugins/ets/doc/spec/
D9_classes.rst291 - Class type named by ``typeReference`` is not accessible (see
292 :ref:`Accessible`).
304 accessible (see :ref:`Accessible`) within subclasses:
327 // All methods are mutually accessible in the class where
395 accessible interface type (see :ref:`Accessible`).
406 // Compile-time error I is not accessible
416 accessible interface type
527 // OK, as I5.foo overrides I1.foo, and there is only one implementation accessible
744 Class members declared ``private`` are not accessible (see :ref:`Accessible`)
762 subclasses of the class and accessible (see :ref:`Accessible`) for all
[all …]
D13_modules.rst24 interfaces, or other declarations are only accessible (see :ref:`Accessible`)
364 is used. In the latter case, the bounded entity is no longer accessible (see
365 :ref:`Accessible`) under the original name.
410 | | | is not accessible */ |
686 | | import * as M | accessible. |
690 | A name is explicitly used | | OK. Only alias is accessible |
694 | | | - Sine is accessible; |
695 | | | - sin is not accessible. |
701 | | from "..." | - Sine is accessible; |
703 | | import * as M | - M.sin is accessible. |
[all …]
D4_names.rst234 Entities within the scope are accessible (see :ref:`Accessible`).
254 accessible scope
264 - Name declared on the package level (*package level scope*) is accessible
265 (see :ref:`Accessible`) throughout the entire package. The name can be
266 accessed (see :ref:`Accessible`) in other packages or modules if exported.
280 declared on the module level is accessible (see :ref:`Accessible`)
290 declared in a namespace is accessible (see :ref:`Accessible`)
307 - A name declared inside a class (*class level scope*) is accessible (see
308 :ref:`Accessible`) in the class and sometimes, depending on the access
344 - A name declared inside an interface (*interface level scope*) is accessible
[all …]
D14_ambients.rst523 ambient namespace declarations are accessible (see :ref:`Accessible`) across
538 A.foo() // Valid function call, as 'foo' is accessible for top-level statements
540 A.foo() // Valid function call, as 'foo' is accessible here as well
544 A.foo() // Valid function call, as 'foo' is accessible here too
553 accessible declaration
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/13.compilation_units/01.separate_modules/
Dmodule_implicit_import.ets22 …All entities from these packages are accessible (see Accessible) as simple names, like the console…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/04.names_declarations_and_scopes/04.scopes/
Dclass_level_protected1.ets19 …A name declared inside a class (class level scope) is accessible (see Accessible) in the class and…
Dclass_level_public.ets19 …A name declared inside a class (class level scope) is accessible (see Accessible) in the class and…
Dclass_level_protected2.ets19 …A name declared inside a class (class level scope) is accessible (see Accessible) in the class and…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/15.semantic_rules/07.overloading_and_overriding/04.overloading_and_overriding_in_classes/
Daccess_modifier_over.ets22 …Only accessible (see Accessible) methods are subject for overloading and overriding. For example, …
/arkcompiler/ets_frontend/es2panda/test/parser/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-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…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/05.object_literal/01.object_literal_of_class_type/
Dcl_n.params.yaml39 let a: A = {} // CTE, parameterless constructor is not accessible
53 let a: A = { name: "John" } // CTE, field is not accessible
/arkcompiler/ets_frontend/ets2panda/test/ast/parser/ts/
Dtest-class-definiton6.ts21 /* @@@ label Error SyntaxError: A get accessor must be at least as accessible as the setter. */
Dtest-class-definiton15.ts21 /* @@@ label Error SyntaxError: A get accessor must be at least as accessible as the setter. */
Dtest-class-definiton16.ts21 /* @@@ label Error SyntaxError: A get accessor must be at least as accessible as the setter. */
/arkcompiler/ets_frontend/ets2panda/test/ast/parser/ets/
Dsuper_field.ets26 /* @@@ label Error TypeError: Class field 'value' defined by the parent class is not accessible in …
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/05.object_literal/
Dprivate_parameterless_cinstructor.ets17 desc: Compilation error if constructor is not accessible
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/01.class_declaration/04.class_implementation_clause/
Dvalid_type_reference.ets18 assert: Each typeReference must name an accessible interface type (link to access control), or a co…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/13.compilation_units/03.import_directives/03.several_bindings_for_one_import_path/
Dexplicitly_and_implicitly_import_3.ets17 desc: A name is explicitly used with alias and implicitly without alias. sin is not accessible

1234567