Home
last modified time | relevance | path

Searched full:label1 (Results 1 – 25 of 322) sorted by relevance

12345678910>>...13

/arkcompiler/ets_frontend/ets2panda/test/ast/parser/ets/
Dunexpected_token_2.ets20 label1:
27 continue /* @@ label */%/* @@ label1 */label1;
40 /* @@@ label1 Error SyntaxError: Unexpected token 'label1'. */
41 /* @@@ label1 Error TypeError: Identifier 'label1' is used in wrong context. */
Dunexpected_token_3.ets20 label1:
27 continue /* @@ label */^/* @@ label1 */^label1;
40 /* @@@ label1 Error SyntaxError: Unexpected token '^'. */
41 /* @@? 27:57 Error SyntaxError: Unexpected token 'label1'. */
42 /* @@? 27:57 Error TypeError: Identifier 'label1' is used in wrong context. */
Drest_parameter_13.ets32 /* @@ label1 */new C<Long, Error>
37 /* @@@ label1 Error TypeError: Expected 1 arguments, got 0. */
38 /* @@@ label1 Error TypeError: Expected 2 arguments, got 0. */
39 /* @@@ label1 Error TypeError: Expected 3 arguments, got 0. */
40 /* @@@ label1 Error TypeError: No matching construct signature */
Drest_parameter_08.ets20 /* @@ label1 */sum()
25 /* @@@ label1 Error TypeError: Expected 1 arguments, got 0. */
26 /* @@@ label1 Error TypeError: Expected 4 arguments, got 0. */
27 /* @@@ label1 Error TypeError: No matching call signature */
Duser_defined_7.ets16 interface /* @@ label1 */double {
20 /* @@@ label1 Error SyntaxError: Cannot be used as user-defined type. */
21 /* @@@ label1 Error SyntaxError: Identifier expected, got 'double'. */
Dunexpected_token_43.ets16 let v2 = `--- ${y + abc /* @@ label */${y} = ${ n*2 }!`/* @@ label1 */} ---`;`
22 /* @@@ label1 Error SyntaxError: Unexpected token '}'. */
23 /* @@@ label1 Error TypeError: Bad operand type, the types of the operands must be numeric type. */
Dswitch_readonly_member_different_enum.ets37 case /* @@ label1 */Sqr.BR:
45 /* @@@ label1 Error TypeError: Switch case type 'A' is not comparable to discriminant type 'E' */
46 /* @@@ label1 Error TypeError: Enum switch case must be unqualified name of an enum constant */
DMultipleFunctionErrors.ets19 function /* @@ label1 */(): /* @@ label2 */{
24 /* @@@ label1 Error SyntaxError: Unexpected token, expected an identifier. */
25 /* @@@ label1 Error TypeError: Only abstract or native methods can't have body. */
Dmissing_in_for_statement_2.ets17 result = result + p[i]!.awaitResolution() * /* @@label1 */a[i];
25 /* @@@ label1 Error TypeError: Unresolved reference a */
26 /* @@@ label1 Error TypeError: Indexed access is not supported for such expression type. */
Dmissing_in_for_statement_1.ets17 result = result + p[i]!.awaitResolution() * /* @@ label1 */a[i];
25 /* @@@ label1 Error TypeError: Unresolved reference a */
26 /* @@@ label1 Error TypeError: Indexed access is not supported for such expression type. */
Dunexpected_token_29.ets17 for (let i: int = 0 /* @@ label1 */i < 10 ^ i++/* @@ label2 */) {
22 /* @@@ label1 Error SyntaxError: Expected ';', got 'identification literal'. */
23 /* @@@ label1 Error TypeError: Bad operand type, the types of the operands must be numeric type. */
Drest_parameter_12.ets23 /* @@ label1 */C.foo()
27 /* @@@ label1 Error TypeError: Expected 2 arguments, got 0. */
28 /* @@@ label1 Error TypeError: No matching call signature */
/arkcompiler/ets_frontend/ets2panda/test/runtime/ets/
DlabeledStatement.ets20 label1:
27 continue label1;
44 label1:
48 break label1;
50 continue label1;
65 label1:
72 break label1;
97 label1:
102 break label1;
/arkcompiler/ets_frontend/ets2panda/test/ast/parser/js/
Dtest-switch-2.js22 /* @@@ label1 Error SyntaxError: Expected ')', got 'end of stream'. */
23 /* @@@ label1 Error SyntaxError: Expected '{', got 'end of stream'. */
24 /* @@@ label1 Error SyntaxError: Expected '}', got 'end of stream'. */
25 /* @@ label1 */
Dtest-wrong-function-decl-1.js17 function f/* @@ label */{/* @@ label1 */}
20 /* @@@ label1 Error SyntaxError: Unexpected token. */
21 /* @@@ label1 Error SyntaxError: Unexpected token, expected ',' or ')'. */
22 /* @@@ label1 Error SyntaxError: Unexpected token, expected '{'. */
Dtest-private-field10.js22 /* @@ label1 */}
26 /* @@@ label1 Error SyntaxError: Expected ')', got '}'. */
27 /* @@@ label1 Error SyntaxError: Unexpected token '}'. */
/arkcompiler/ets_frontend/ets2panda/test/parser/ets/
DlabeledSwitchStatement.ets20 label1:
29 continue label1;
41 label1:
49 break label1;
DlabeledDoWhileStatement.ets19 label1:
23 continue label1;
25 break label1;
DlabeledForStatement.ets17 label1:
20 continue label1;
22 break label1;
DlabeledWhileStatement.ets21 label1:
25 continue label1;
27 break label1;
/arkcompiler/ets_frontend/ets2panda/test/ast/parser/ets/annotations_tests/
DannotationUsage_bad_param_for_classproperty.ets24 @MyAnno({testProperty1: /* @@ label1 */A})
31 /* @@@ label1 Error TypeError: Class name 'A' used in the wrong context */
32 /* @@@ label1 Error TypeError: Type 'A' cannot be assigned to type 'String' */
33 /* @@@ label1 Error TypeError: Invalid value for annotation field, expected a constant literal. */
DannotationUsage_bad_param_for_type_alias.ets23 @MyAnno({testProperty1: /* @@ label1 */A})
32 /* @@@ label1 Error TypeError: Class name 'A' used in the wrong context */
33 /* @@@ label1 Error TypeError: Type 'A' cannot be assigned to type 'String' */
34 /* @@@ label1 Error TypeError: Invalid value for annotation field, expected a constant literal. */
/arkcompiler/ets_frontend/ets2panda/test/ast/parser/ets/import_tests/
Ddefault_import3.ets16 import {default/* @@ label */} from /* @@ label1 */"./modules/class_default_module.ets"/* @@ label2…
20 /* @@@ label1 Error SyntaxError: Unexpected token, expected ',' or '}'. */
21 /* @@@ label1 Error SyntaxError: Unexpected token, expected 'from'. */
/arkcompiler/ets_frontend/ets2panda/test/ast/compiler/ets/extension_accessor_tests/
DextensionAccessorNameDuplicatedWithInterfaceInstanceField.ets24 get name(this: B): string /* @@ label1 */{
32 /* @@@ label1 Error TypeError: The extension accessor 'name' has the same name with method in class…
33 /* @@@ label1 Error TypeError: The extension accessor 'name' has the same name with method in class…
/arkcompiler/ets_frontend/ets2panda/test/ast/compiler/ets/
Dfuzzingtest0.ets17 let callback = () => {for /* @@ label1 */aa !== /* @@ label2 */arr[idx]/* @@ label3 */)
19 /* @@@ label1 Error SyntaxError: Expected '(', got 'identification literal'. */
20 /* @@@ label1 Error TypeError: Unresolved reference aa */

12345678910>>...13