Home
last modified time | relevance | path

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

12345

/arkcompiler/ets_frontend/ets2panda/linter/test/main/
Dinferred_type.ets24 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/tests/ets-templates/09.classes/09.constructor_declaration/02.constructor_body/
DImplicitly_superclass_constructor_invocation.ets17 desc: Check that superclass construct implicitly invoked.
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/plugins/ets/doc/concurrency/
D03_concurrency_features.rst26 The function *async* is implicitly a coroutine that can be called as a regular function.
37 *No-argument* return statement can be implicitly added as the last statement
/arkcompiler/runtime_core/static_core/plugins/ets/doc/interop_js/
D1_introduction.rst90 - Types in ArkTS can be implicitly or explicitly converted to ESObject types, but ESObject is not a…
109 let a: ESObject = new A() // OK, implicitly convert A to ESObject
115 let n1: number = a.v // CTE, cannot implicitly convert ESObject to number
121 let s1: ESObject = 1 // OK, implicitly convert number to ESObject
122 let s2: ESObject = new A() // OK, implicitly convert A to ESObject
126 foo(1); // OK, implicitly convert number to the ESObject
127 foo(new A()) // OK, implicitly convert A to ESObject
/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/ets_frontend/ets2panda/test/runtime/ets/
Ddate-now.ets17 // 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.ets18 desc: The integer value of an enum constant is set implicitly if an enumeration constant specifies …
Denum_int_n.ets18 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/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
Dexplicitly_and_implicitly_import_2.ets17 desc: A name is explicitly used with alias and implicitly without alias. Sine is accessible
Dexplicitly_and_implicitly_import_4.ets17 desc: A name is explicitly used with alias and implicitly with alias.
Dexplicitly_and_implicitly_import_1.ets17 desc: A name is explicitly used without alias and implicitly with alias.
Dexplicitly_and_implicitly_import_6.ets17 desc: A name is explicitly used with alias and implicitly without alias. Sine is accessible
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/05.object_literal/02.object_literal_of_interface_type/
Dspec_ex1.ets19 an anonymous class implicitly created for interface I.
Dspec_ex2.ets19 object literal is an anonymous class implicitly created for interface I.
Din.ets20 is an anonymous class implicitly created for interface I.
/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/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/runtime_core/static_core/plugins/ets/tests/ets-templates/13.compilation_units/01.separate_modules/
Dmodule_implicit_import.ets20 …Every module implicitly imports (see Implicit Import) all exported entities from essential kernel …
/arkcompiler/runtime_core/static_core/plugins/ets/doc/spec/
D11_enums.rst89 - Implicitly by omitting the constant expression.
92 implicitly to an integer value (see :ref:`Enumeration Integer Values`).
158 The integer value of an ``enum`` constant is set implicitly if an enumeration
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/09.constructor_declaration/04.default_constructor/
Ddefault_constructor.ets18 assert: If a class contains no constructor declarations, then a default constructor is implicitly d…

12345