Searched full:implicitly (Results 1 – 25 of 75) sorted by relevance
123
| /arkcompiler/ets_frontend/ets2panda/linter/test/main/ |
| D | inferred_type.sts | 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/doc/interop_js/ |
| D | 2_esobject.rst | 23 - 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/ |
| D | Implicitly_superclass_constructor_invocation.sts | 17 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/ |
| 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/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/runtime_core/static_core/plugins/ets/doc/spec/ |
| D | 11_enums.rst | 74 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/ |
| D | date-now.sts | 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.sts | 18 desc: The integer value of an enum constant is set implicitly if an enumeration constant specifies …
|
| D | enum_int_n.sts | 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_packages_and_modules/04.import_directives/03.several_bindings_for_one_import_path/ |
| D | explicitly_and_implicitly_import_2.sts | 17 desc: A name is explicitly used with alias and implicitly without alias. Sine is accessible
|
| D | explicitly_and_implicitly_import_1.sts | 17 desc: A name is explicitly used without alias and implicitly with alias.
|
| D | explicitly_and_implicitly_import_3.sts | 17 desc: A name is explicitly used with alias and implicitly without alias. sin is not accessible
|
| D | explicitly_and_implicitly_import_4.sts | 17 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/ |
| D | inner_class_with_explicitly_static_member.sts | 18 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/ |
| D | in.sts | 20 is an anonymous class implicitly created for interface I.
|
| D | spec_ex2.sts | 19 object literal is an anonymous class implicitly created for interface I.
|
| D | spec_ex1.sts | 19 an anonymous class implicitly created for interface I.
|
| /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/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/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/04.access_modifiers/ |
| D | default_access_modifiers.sts | 19 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/ |
| D | default_constructor.sts | 18 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/ |
| D | module_implicit_import.sts | 20 …Every module implicitly imports (see Implicit Import) all exported entities from essential kernel …
|
123