Searched full:implicitly (Results 1 – 25 of 113) sorted by relevance
12345
| /arkcompiler/ets_frontend/ets2panda/linter/test/main/ |
| D | inferred_type.ets | 24 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/ |
| D | Implicitly_superclass_constructor_invocation.ets | 17 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/ |
| D | README.md | 3 This package contains various debug tools and is not implicitly imported by default like other stdl…
|
| /arkcompiler/runtime_core/static_core/docs/bc_verification/ |
| D | type_system.md | 9 - 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/ |
| D | type_system.md | 9 - 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/ |
| D | 03_concurrency_features.rst | 26 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/ |
| D | 1_introduction.rst | 90 - 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/ |
| D | rationale-for-bytecode.md | 47 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/ |
| D | rationale-for-bytecode.md | 47 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/ |
| D | date-now.ets | 17 // embedded into implicitly imported modules like std.core
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/11.enumerations/01.enumeration_integer_values/ |
| D | enum_int.ets | 18 desc: The integer value of an enum constant is set implicitly if an enumeration constant specifies …
|
| D | enum_int_n.ets | 18 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/ |
| D | explicitly_and_implicitly_import_3.ets | 17 desc: A name is explicitly used with alias and implicitly without alias. sin is not accessible
|
| D | explicitly_and_implicitly_import_2.ets | 17 desc: A name is explicitly used with alias and implicitly without alias. Sine is accessible
|
| D | explicitly_and_implicitly_import_4.ets | 17 desc: A name is explicitly used with alias and implicitly with alias.
|
| D | explicitly_and_implicitly_import_1.ets | 17 desc: A name is explicitly used without alias and implicitly with alias.
|
| D | explicitly_and_implicitly_import_6.ets | 17 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/ |
| D | spec_ex1.ets | 19 an anonymous class implicitly created for interface I.
|
| D | spec_ex2.ets | 19 object literal is an anonymous class implicitly created for interface I.
|
| D | in.ets | 20 is an anonymous class implicitly created for interface I.
|
| /arkcompiler/ets_frontend/ets2panda/test/ast/compiler/ts/ |
| D | recursiveFunction.ts | 26 /* @@@ label Error TypeError: foo implicitly has return type 'any' because it does not have a retur…
|
| /arkcompiler/ets_frontend/es2panda/ir/ts/ |
| D | tsSignatureDeclaration.cpp | 69 …"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/ |
| D | module_implicit_import.ets | 20 …Every module implicitly imports (see Implicit Import) all exported entities from essential kernel …
|
| /arkcompiler/runtime_core/static_core/plugins/ets/doc/spec/ |
| D | 11_enums.rst | 89 - 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/ |
| D | default_constructor.ets | 18 assert: If a class contains no constructor declarations, then a default constructor is implicitly d…
|
12345