Searched full:another (Results 1 – 25 of 412) sorted by relevance
12345678910>>...17
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/03.types/08.reference_types/04.literal_types/ |
| D | custom_literal_type.params.yaml | 30 let a: "some str" | "another str" | Number | boolean | string = "some str" 32 a = "another str" 33 assertEQ( a, "another str" ) 44 type LITERAL = "some str" | "another str" | Number | boolean | string 49 a = "another str" 50 assertEQ( a, "another str" )
|
| D | function_literal_type.params.yaml | 23 let a: "another str" = "another str" 178 assertEQ( foo<"another str">("another str"), "another str" ) 231 Use rest parameter of literal array and argument of another literal type 237 fooL("another str") 253 type TPL = ["some str", "another str", undefined, null] 256 assertEQ(j[1], "another str") 261 let a: TPL = [ "some str", "another str", undefined, null ] 269 type TPL = ["some str, "another str", undefined, null] 272 foo( [ "some str", new String("another str"), undefined, null ] )
|
| /arkcompiler/runtime_core/static_core/compiler/docs/ |
| D | memory_barriers_doc.md | 5 …ray, NewObject, NewMultiArray so that if the created objects are used in another thread, the initi… 6 We can remove the barrier if we prove that the created object cannot be passed to another thread be… 7 This can happen if we save the object to memory or pass it to another method 22 If we visit an instruction that can pass an object to another thread(Store instruction, Call instru… 25 …he barrier in the last instruction before potentially passing the created objects to another thread
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/04.names_declarations_and_scopes/06.type_declarations/01.type_alias_declaration/ |
| D | scope.params.yaml | 15 # use an alias defined in another unit 41 # use an alias defined and exported as type from another unit 65 # use an alias defined and exported from another unit 89 # use an alias defined and exported as type under a different name from another unit 113 # use an alias defined and not exported from another unit 139 # use an alias defined and exported from another unit, duplicate
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/06.contexts_and_conversions/05.implicit_conversions/11.tuple_types_conversion/decl_var/ |
| D | decl-var.sts | 19 Tuple types conversion is the conversion of one tuple type to another. 29 // variable declaration with another variable 37 // constant declaration with another constant 41 // variable declaration with another constant 45 // constant declaration with another variable
|
| D | decl-var_n.sts | 19 Tuple types conversion is the conversion of one tuple type to another. 31 // variable declaration with another variable 37 // constant declaration with another variable
|
| /arkcompiler/ets_frontend/ets2panda/linter/test/main/ |
| D | type_literals.sts | 119 …let v2: { x: LocalType } = {x: {a: 1, b: '2'}}; // Non-fixable, type captures another type declare… 124 let v3: {[one]: 1}; // Non-fixable, type captures another object declared in local scope 127 …let v4: { y: LocalClass } = {y: new LocalClass()}; // Non-fixable, type captures another type decl… 129 …let v5: { lc: typeof LocalClass }; // Non-fixable, type captures another type declared in local sc… 131 let v6: { lc: typeof v1 }; // Non-fixable, type captures another object declared in local scope
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/17.experimental_features/05.callable_types/01.callable_types_with_invoke_method/ |
| D | ct_invoke_access.params.yaml | 16 // private invoke from same-class another invoke 36 // protected invoke from same-class another invoke 81 // protected invoke from another class invoke 93 // protected invoke from another class method
|
| /arkcompiler/ets_frontend/ets2panda/test/ast/parser/ets/import_tests/type/ |
| D | type_3.sts | 22 /* @@? 20:27 Error SyntaxError: The given name 'foo' is already used in another export */ 23 /* @@? 1:1 Error SyntaxError: The given name 'foo' is already used in another export */
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/10.interfaces/04.interface_members/ |
| D | field_initializer_with_other_field.sts | 17 desc: Field initializer with reference to another interface field. 18 assert: It is a compile-time error if the initializer of an interface field uses another field whos…
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/05.field_declarations/ |
| D | field_declaration_with_busy_name.sts | 19 desc: Declare a field with the name that is already used for another field or a method or a member … 20 …ss declaration to declare a field with the name that is already used for another field or a method…
|
| /arkcompiler/runtime_core/static_core/tests/verifier-tests/ |
| D | cflow_fallthrough_from_exc_handler_to_exc_handler.pa | 17 # fallthrough from one handler to another 35 # direct jump from one handler to another
|
| D | cflow_jump_from_exc_handler_to_exc_handler.pa | 17 # direct jump from one handler to another 35 # direct jump from one handler to another
|
| /arkcompiler/runtime_core/tests/verifier-tests/ |
| D | cflow_fallthrough_from_exc_handler_to_exc_handler.pa | 17 # fallthrough from one handler to another 35 # direct jump from one handler to another
|
| D | cflow_jump_from_exc_handler_to_exc_handler.pa | 17 # direct jump from one handler to another 35 # direct jump from one handler to another
|
| /arkcompiler/ets_frontend/ets2panda/test/ast/compiler/ets/implicit_package_import/package_test_4/ |
| D | package_module_2.sts | 21 // this file is being imported by another one, so compile it with "--ets-module". This causes 27 …compile `package_module_2.sts` with `--ets-module` option. It is being imported by another file. */
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_test_suite/coroutines/ |
| D | wake_for_another_event.sts | 18 * that will be resolved in then callback of another promise 19 * that will be resolved in another coroutine
|
| D | launch_exception.sts | 38 console.println("Expected StackOverflowError but another exception has been thrown!"); 52 console.println("Expected Error but another exception has been thrown!");
|
| /arkcompiler/ets_runtime/test/aottest/typedarray_load_store/ |
| D | typedarray_load_store.ts | 74 /** TypedArray constructed from another TypedArray(constructed from ArrayBuffer). */ 79 /** TypedArray constructed from another TypedArray(constructed from TypedArray). */ 121 /** TypedArray constructed from another TypedArray(constructed from ArrayBuffer). */ 126 /** TypedArray constructed from another TypedArray(constructed from TypedArray). */
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/06.contexts_and_conversions/05.implicit_conversions/11.tuple_types_conversion/assn_var/ |
| D | assn-var.sts | 19 Tuple types conversion is the conversion of one tuple type to another. 34 // variable assignment with another variable 38 // variable assignment with another constant
|
| D | assn-var_n.sts | 19 Tuple types conversion is the conversion of one tuple type to another. 29 // variable assignment with another variable
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/17.experimental_features/05.callable_types/02.callable_types_with_instantiate_method/ |
| D | ct_inst_access.params.yaml | 16 // private instantiate from same-class another instantiate 46 // protected instantiate from same-class another instantiate 111 // protected instantiate from another class instantiate 128 // protected instantiate from another class method
|
| /arkcompiler/ets_frontend/ets2panda/test/runtime/ets/ |
| D | RegisterSpiller.sts | 40 let s3: String = "another "; 42 let s5: String = "This is another string";
|
| /arkcompiler/ets_frontend/es2panda/test/parser/ts/ |
| D | test-tuple-type7-expected.txt | 1 SyntaxError: A rest element cannot follow another rest element [test-tuple-type7.ts:17:78]
|
| D | test-tuple-type8-expected.txt | 1 SyntaxError: A rest element cannot follow another rest element [test-tuple-type8.ts:17:50]
|
12345678910>>...17