| /arkcompiler/ets_runtime/test/moduletest/forin_enum_cache/ |
| D | forin_enum_cache.js | 29 let own = { variable 33 own.__proto__ = parent 38 for (let i in own) { 43 for (let i in own) { 49 for (let i in own) { 60 for (let i in own) { 66 for (let i in own) {
|
| /arkcompiler/ets_runtime/test/aottest/forin_enum_cache/ |
| D | forin_enum_cache.ts | 31 let own = { variable 35 own.__proto__ = parent variable 40 for (let i in own) { 45 for (let i in own) { 51 for (let i in own) { 62 for (let i in own) { 68 for (let i in own) {
|
| /arkcompiler/ets_runtime/test/moduletest/forin_delete_property/ |
| D | forin_delete_property.js | 38 let own = { variable 42 own.__proto__ = parent 44 for (let i in own) { 45 delete own.a 50 for (let i in own) {
|
| /arkcompiler/ets_runtime/test/aottest/forin_delete_property/ |
| D | forin_delete_property.ts | 39 let own = { variable 43 own.__proto__ = parent variable 45 for (let i in own) { 46 delete own.a 51 for (let i in own) {
|
| /arkcompiler/ets_runtime/test/moduletest/forin_dictionary_mode/ |
| D | forin_dictionary_mode.js | 31 let own = { 36 delete own.b 37 own.__proto__ = parent 43 for (let i in own) {
|
| /arkcompiler/ets_runtime/test/aottest/forin_dictionary_mode/ |
| D | forin_dictionary_mode.ts | 33 let own = { variable 38 delete own.b variable 39 own.__proto__ = parent 45 for (let i in own) {
|
| /arkcompiler/ets_runtime/test/moduletest/forin_non_empty_prototype/ |
| D | forin_non_empty_prototype.js | 37 let own = { variable 42 own.__proto__ = parent 45 for (let i in own) {
|
| /arkcompiler/ets_runtime/test/aottest/forin_non_empty_prototype/ |
| D | forin_non_empty_prototype.ts | 39 let own = { variable 44 own.__proto__ = parent variable 47 for (let i in own) {
|
| /arkcompiler/ets_frontend/ets2panda/test/ast/compiler/ets/implicit_package_import/package_test_4/ |
| D | package_module_1.ets | 19 // compiling this file will fail with import from it's own package 21 /* @@? 17:1 Error SyntaxError: Package module cannot import from a file in it's own package. */
|
| /arkcompiler/ets_frontend/ets2panda/test/ast/compiler/ets/implicit_package_import/package_test_8/ |
| D | import_multi_error.ets | 23 /* @@? 18:1 Error SyntaxError: Package module cannot import from a file in it's own package. */ 25 /* @@? 19:1 Error SyntaxError: Package module cannot import from a file in it's own package. */
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/05.generics/03.utility_types/01.partial_utility_type/ |
| D | partial_example_getter_setter.ets | 19 …Partial<T> variables. Object literal has its own built-in getters and setters to modify its variab… 41 // 42 is printed as object literal has its own setter and getter
|
| /arkcompiler/ets_frontend/ets2panda/driver/build_system/ |
| D | README.md | 43 In test directory, there are some demo projects. Each project has its own `build_config.json`. 44 Replace the path to your own path before running. For example, use sed command in linux:
|
| /arkcompiler/ets_frontend/ets2panda/linter/docs/rules/ |
| D | recipe128.md | 8 own mechanisms for interoperating with JavaScript.
|
| /arkcompiler/ets_runtime/ecmascript/tests/ |
| D | object_operator_second_test.cpp | 62 type = OperatorType::OWN; in HWTEST_F_L0() 79 type = OperatorType::OWN; in HWTEST_F_L0() 96 type = OperatorType::OWN; in HWTEST_F_L0() 111 type = OperatorType::OWN; in HWTEST_F_L0() 126 type = OperatorType::OWN; in HWTEST_F_L0() 142 type = OperatorType::OWN; in HWTEST_F_L0()
|
| /arkcompiler/ets_frontend/ets2panda/linter/arkanalyzer/ |
| D | LICENSE | 117 do not modify the License. You may add Your own attribution 123 You may add Your own copyright statement to Your modifications and 170 on Your own behalf and on Your sole responsibility, not on behalf 182 replaced with your own identifying information. (Don't include
|
| /arkcompiler/ets_frontend/ets2panda/linter/homecheck/ |
| D | LICENSE | 117 do not modify the License. You may add Your own attribution 123 You may add Your own copyright statement to Your modifications and 170 on Your own behalf and on Your sole responsibility, not on behalf 182 replaced with your own identifying information. (Don't include
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/01.class_declaration/03.class_extension_clause/initialize_members/ |
| D | initialize_members_32.ets | 17 desc: The subclass directly initializes its own member variables. The modifier is public and the ty…
|
| D | initialize_members_33.ets | 17 desc: The subclass initializes its own member variables in the constructor, with the modifier being…
|
| D | initialize_members_43.ets | 17 desc: The subclass directly initializes its own member variables, the modifier is protected, and th…
|
| D | initialize_members_50.ets | 17 desc: The subclass directly initializes its own member variables, the modifier is private, and the …
|
| D | initialize_members_44.ets | 17 desc: The subclass initializes its own member variables in the constructor, with the modifier being…
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/05.field_declarations/03.field_initialization/ |
| D | static_field_self_initialization_reference.ets | 18 …s a compile-time error if. The reference appears in the initializer of f's own declaration or at a…
|
| D | non_static_field_self_initialization_reference.ets | 18 …s a compile-time error if. The reference appears in the initializer of f's own declaration or at a…
|
| /arkcompiler/ets_frontend/ets2panda/test/ast/compiler/ts/ |
| D | recursiveTypeofWithProperty.ts | 31 /* @@@ label Error TypeError: 'c' is referenced directly or indirectly in its own initializer ot ty…
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/13.compilation_units/03.import_directives/04.default_import_binding/ |
| D | multiple_default_export_2.ets | 18 Module imports default entity A from another module, then exports own default entity B.
|