Home
last modified time | relevance | path

Searched full:implicitly (Results 1 – 25 of 75) sorted by relevance

123

/arkcompiler/ets_frontend/ets2panda/linter/test/main/
Dinferred_type.sts24 let x; // is implicitly 'Any'
25 let y = foo(); // is implicitly 'Any'
27 function bar(x) {} // 'x' is implicitly 'Any'
28 let baz = (x: number, y) => {}; // 'y' is implicitly 'Any'
31 f; // is implicitly 'Any'
32 g = foo(); // is implicitly 'Any'
34 h(x, y, ...z) {} // 'x', 'y' and 'z' are implicitly 'Any'
42 f; // is implicitly 'Any'
/arkcompiler/runtime_core/static_core/plugins/ets/doc/interop_js/
D2_esobject.rst23 - Values of ESObject type can be converted to and from Object type. However, implicitly converting …
61 foo(1); // ok, implicitly convert 1 to the ESObject type
62 foo(new StaticClass()); // ok, implicitly convert static object to the ESObject type
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/09.constructor_declaration/03.constructor_body/
DImplicitly_superclass_constructor_invocation.sts17 desc: Check that superclass construct implicitly invoced.
18 … is not part of the primordial class Object, then the constructor body implicitly begins with a su…
/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/std/debug/
DREADME.md3 This package contains various debug tools and is not implicitly imported by default like other stdl…
/arkcompiler/runtime_core/static_core/docs/bc_verification/
Dtype_system.md9 - Bot() - subtype of all types, subtyping relation is made implicitly upon type creation.
10 - Top() - supertype of all types, subtyping rel is created implicitly.
/arkcompiler/runtime_core/docs/bc_verification/
Dtype_system.md9 - Bot() - subtype of all types, subtyping relation is made implicitly upon type creation.
10 - Top() - supertype of all types, subtyping rel is created implicitly.
/arkcompiler/runtime_core/static_core/docs/
Drationale-for-bytecode.md47 In _stack-based_ approach, operands are implicitly encoded in the operation, which results in
91 * Implicitly addressed accumulator register.
97 ### Implicitly addressed accumulator register
99 Panda bytecode has a dedicated register called _accumulator_, which is addressed implicitly
111 be an accumulator register. Having an implicitly addressed accumulator register de facto borrows
/arkcompiler/runtime_core/docs/
Drationale-for-bytecode.md47 In _stack-based_ approach, operands are implicitly encoded in the operation, which results in
91 * Implicitly addressed accumulator register.
97 ### Implicitly addressed accumulator register
99 Panda bytecode has a dedicated register called _accumulator_, which is addressed implicitly
111 be an accumulator register. Having an implicitly addressed accumulator register de facto borrows
/arkcompiler/runtime_core/static_core/plugins/ets/doc/spec/
D11_enums.rst74 of type ``string``, or implicitly by omitting the constant expression. If
76 is set implicitly to a numeric value (see :ref:`Enumeration Integer Values`).
118 The integer value of an ``enum`` constant is set implicitly if an enumeration
/arkcompiler/ets_frontend/ets2panda/test/runtime/ets/
Ddate-now.sts17 // embedded into implicitly imported modules like std.core
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/11.enumerations/01.enumeration_integer_values/
Denum_int.sts18 desc: The integer value of an enum constant is set implicitly if an enumeration constant specifies …
Denum_int_n.sts18 desc: The integer value of an enum constant is set implicitly if an enumeration constant specifies …
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/13.compilation_units_packages_and_modules/04.import_directives/03.several_bindings_for_one_import_path/
Dexplicitly_and_implicitly_import_2.sts17 desc: A name is explicitly used with alias and implicitly without alias. Sine is accessible
Dexplicitly_and_implicitly_import_1.sts17 desc: A name is explicitly used without alias and implicitly with alias.
Dexplicitly_and_implicitly_import_3.sts17 desc: A name is explicitly used with alias and implicitly without alias. sin is not accessible
Dexplicitly_and_implicitly_import_4.sts17 desc: A name is explicitly used with alias and implicitly with alias.
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/01.class_declaration/class_modifiers_inner_classes_and_static_classes/
Dinner_class_with_explicitly_static_member.sts18 assert: A compile-time error occurs if an inner class declares an explicitly or implicitly static m…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/05.object_literal/02.object_literal_of_interface_type/
Din.sts20 is an anonymous class implicitly created for interface I.
Dspec_ex2.sts19 object literal is an anonymous class implicitly created for interface I.
Dspec_ex1.sts19 an anonymous class implicitly created for interface I.
/arkcompiler/ets_frontend/es2panda/ir/ts/
DtsSignatureDeclaration.cpp69 …"Call signature, which lacks return-type annotation, implicitly has an 'any' return type.", Start(… in Check()
73 …"Construct signature, which lacks return-type annotation, implicitly has an 'any' return type.", S… in Check()
/arkcompiler/ets_frontend/ets2panda/test/ast/compiler/ts/
DrecursiveFunction.ts26 /* @@@ label Error TypeError: foo implicitly has return type 'any' because it does not have a retur…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/04.access_modifiers/
Ddefault_access_modifiers.sts19 assert: If no modifier is explicitly provided, iy is implicitly declared public dy default.
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/09.constructor_declaration/05.default_constructor/
Ddefault_constructor.sts18 assert: If a class contains no constructor declarations, then a default constructor is implicitly d…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/13.compilation_units_packages_and_modules/01.separate_modules/
Dmodule_implicit_import.sts20 …Every module implicitly imports (see Implicit Import) all exported entities from essential kernel …

123