Searched full:label6 (Results 1 – 25 of 33) sorted by relevance
12
| /arkcompiler/ets_frontend/ets2panda/test/ast/parser/js/ |
| D | trailing_comma_1.js | 35 foo(a[0] /* @@ label6 */a[1]/* @@ label7 */) 45 /* @@@ label6 Error SyntaxError: Unexpected token, expected ',' or ')'. */ 46 /* @@@ label6 Error SyntaxError: Unexpected token 'a'. */
|
| /arkcompiler/ets_frontend/ets2panda/test/ast/parser/ts/ |
| D | unexpected_token_17.ts | 17 console/* @@ label5 */.log(/* @@ label6 */"hehe") 27 /* @@@ label6 Error SyntaxError: Unexpected token, expected an identifier. */
|
| /arkcompiler/ets_frontend/ets2panda/test/ast/parser/ets/ |
| D | ambient_indexer_8.ets | 20 /* @@ label4 */function main/* @@ label6 */() { 29 /* @@@ label6 Error TypeError: Native and Declare methods should have explicit return type. */
|
| D | labeled.ets | 22 L7: /* @@ label6 */null; 32 /* @@@ label6 Error SyntaxError: Label must be followed by a loop statement. */
|
| D | keyof_parameter.ets | 28 /* @@ label5 */getProperty(a, /* @@ label6 */1); 36 /* @@@ label6 Error TypeError: Type 'int' is not compatible with type '"method1"|"field1"|"field2"'…
|
| D | keyof_applied_to_other.ets | 32 type keyofVoid = keyof /* @@ label6 */void/* @@ label7 */; 40 /* @@@ label6 Error TypeError: 'void' used as type annotation. */
|
| D | keyof_union.ets | 33 /* @@ label5 */getProperty<keyofA>(/* @@ label6 */"other field") 41 /* @@@ label6 Error TypeError: Type '"other field"' is not compatible with type '"foo"|"field1"' at…
|
| D | unexpected_token_56.ets | 16 …bel2 */;/* @@ label3 */i < /* @@ label4 */count/* @@ label5 */; ++i/* @@ label6 */) /* @@ label7 *… 26 /* @@@ label6 Error SyntaxError: Unexpected token ')'. */
|
| D | keyof_annotation.ets | 41 let y6:keyof B = /* @@ label6 */100; 49 /* @@@ label6 Error TypeError: Type 'int' cannot be assigned to type '"bmethod1"|"bfield1"|"bfield2…
|
| D | keyof_private_and_protected.ets | 44 let c10:keyof B = /* @@ label6 */"bfoo2" 54 /* @@@ label6 Error TypeError: Type '"bfoo2"' cannot be assigned to type '"bfoo"|"bfield1"|"foo"|"f…
|
| /arkcompiler/ets_frontend/ets2panda/test/ast/compiler/ets/FixedArray/annotation_tests/ |
| D | ambient_annotations_bad_type02.ets | 23 /* @@ label6 */color: FixedArray<Color> 40 /* @@@ label6 Error TypeError: Initializer for field 'color' does not match the expected definition…
|
| D | ambient_annotations_bad_type01.ets | 22 /* @@ label6 */favorColor: Src.Color = /* @@ label7 */Src.Color.RED 41 /* @@@ label6 Error TypeError: Initializer for field 'favorColor' does not match the expected defin…
|
| /arkcompiler/ets_frontend/ets2panda/test/ast/compiler/ets/annotation_tests/ |
| D | ambient_annotations_bad_type02.ets | 23 /* @@ label6 */color: Color[] 40 /* @@@ label6 Error TypeError: Initializer for field 'color' does not match the expected definition…
|
| D | ambient_annotations_bad_type01.ets | 22 /* @@ label6 */favorColor: Src.Color = /* @@ label7 */Src.Color.RED 41 /* @@@ label6 Error TypeError: Initializer for field 'favorColor' does not match the expected defin…
|
| /arkcompiler/ets_frontend/ets2panda/test/ast/compiler/ets/ |
| D | absent_return_statement.ets | 37 foo2(() => /* @@ label6 */console.println("TEST")); 45 /* @@@ label6 Error TypeError: Type 'void' is not compatible with the enclosing method's return typ…
|
| D | variance_typeparam.ets | 39 paramsFunc4(a:T1, b:/* @@ label6 */T2){} //CTE 50 /* @@@ label6 Error TypeError: Type Parameter 'T2' is declared as 'out' but occurs in 'in' position…
|
| D | variance_typeparam_tuple.ets | 28 returnTypeFunc2():/* @@ label6 */[number,T2,string]{ //CTE 46 /* @@@ label6 Error TypeError: Type Parameter 'T2' is declared as 'out' but occurs in 'invariant' p…
|
| D | variance_typeparam_union.ets | 23 field7:/* @@ label6 */T1|T2|T3; //CTE 76 /* @@@ label6 Error TypeError: Type Parameter 'T1' is declared as 'in' but occurs in 'invariant' po… 77 /* @@@ label6 Error TypeError: Type Parameter 'T2' is declared as 'out' but occurs in 'invariant' p…
|
| D | unionCommonMember_neg.ets | 49 assertEQ(/* @@ label6 */u.fld6, 42.0) 59 /* @@@ label6 Error TypeError: Member type must be the same for all union objects. */
|
| D | variance_typeparam_lambda.ets | 21 readonly readonlyfield2:/* @@ label5 */(a:/* @@ label6 */T2)=>T1; //CTE 50 /* @@@ label6 Error TypeError: Type Parameter 'T2' is declared as 'out' but occurs in 'in' position…
|
| D | variance_typeparam_array.ets | 28 returnTypeFunc2():T2/* @@ label6 */[]{ //CTE 50 /* @@@ label6 Error TypeError: Type Parameter 'T2' is declared as 'out' but occurs in 'invariant' p…
|
| /arkcompiler/ets_frontend/ets2panda/test/ast/parser/ets/readonly-parameter-test/ |
| D | readonly-parameter-and-Readonly-test2.ets | 30 /* @@ label6 */x1[0] = 2 38 /* @@@ label6 Error TypeError: Cannot modify an array or tuple content that has the readonly parame…
|
| /arkcompiler/ets_frontend/ets2panda/test/ast/compiler/ets/FixedArray/ |
| D | unionCommonMember_neg.ets | 49 assertEQ(/* @@ label6 */u.fld6, 42.0) 59 /* @@@ label6 Error TypeError: Member type must be the same for all union objects. */
|
| D | variance_typeparam_array.ets | 28 returnTypeFunc2():T2/* @@ label6 */[]{ //CTE 50 /* @@@ label6 Error TypeError: Type Parameter 'T2' is declared as 'out' but occurs in 'invariant' p…
|
| /arkcompiler/runtime_core/tests/cts-generator/cts-template/ |
| D | ldobj.v.obj.yaml | 478 jeq.obj v8, label6 481 label6: 574 jeq.obj v8, label6 577 label6:
|
12