Home
last modified time | relevance | path

Searched full:missing (Results 1 – 25 of 227) sorted by relevance

12345678910

/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/08.statements/07.while_statements_and_do_statements/
Dneg.params.yaml17 // missing parentheses
21 // missing right parenthesis
25 // missing left parenthesis
29 // missing parentheses
33 // missing right parenthesis
37 // missing left parenthesis
41 // missing statement
45 // missing right curly bracket
49 // missing left curly bracket
53 // missing curly braces, multiple statements
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/08.statements/05.if_statements/
Dif_neg.params.yaml17 // missing statement in then branch
25 // missing statement in else branch
33 // missing parentheses
37 // missing right parenthesis
41 // missing left parenthesis
45 // multiple statements, missing curly braces
50 // missing left curly bracket in then branch
54 // missing left curly bracket in else branch
58 // missing right curly bracket in then branch
62 // missing right curly bracket in else branch
/arkcompiler/runtime_core/static_core/tests/tests-u-runner-2/
D.pylintrc20 # C0114: Missing module docstring (missing-module-docstring)
21 # C0115: Missing class docstring (missing-class-docstring)
22 # C0116: Missing function or method docstring (missing-function-docstring)
30 disable=missing-module-docstring,
31 missing-class-docstring,
32 missing-function-docstring,
Dpyproject.toml40 "D100", # missing-module-docstring
41 "D101", # missing-class-docstring
42 "D102", # missing-function-docstring
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/
D.pylintrc20 # C0114: Missing module docstring (missing-module-docstring)
21 # C0115: Missing class docstring (missing-class-docstring)
22 # C0116: Missing function or method docstring (missing-function-docstring)
32 disable=missing-module-docstring,
33 missing-class-docstring,
34 missing-function-docstring,
/arkcompiler/ets_frontend/ets2panda/test/ast/compiler/ets/annotation_tests/
Dambient_annotations_bad_type03.ets21 …' in annotation 'ClassAuthor' is declared in the ambient declaration but missing in the implementa…
22 …' in annotation 'ClassAuthor' is declared in the ambient declaration but missing in the implementa…
23 …' in annotation 'ClassAuthor' is declared in the ambient declaration but missing in the implementa…
24 …' in annotation 'ClassAuthor' is declared in the ambient declaration but missing in the implementa…
25 …' in annotation 'ClassAuthor' is declared in the ambient declaration but missing in the implementa…
26 …' in annotation 'ClassAuthor' is declared in the ambient declaration but missing in the implementa…
27 …' in annotation 'ClassAuthor' is declared in the ambient declaration but missing in the implementa…
28 …' in annotation 'ClassAuthor' is declared in the ambient declaration but missing in the implementa…
29 …' in annotation 'ClassAuthor' is declared in the ambient declaration but missing in the implementa…
DannotationUsage_missing_AT01.ets26 /* @@? 19:1 Error TypeError: Annotation missing '@' symbol before annotation name. */
28 /* @@? 22:1 Error TypeError: Annotation missing '@' symbol before annotation name. */
DannotationUsage_missing_AT_for_type_alias.ets28 /* @@? 19:1 Error TypeError: Annotation missing '@' symbol before annotation name. */
30 /* @@? 23:5 Error TypeError: Annotation missing '@' symbol before annotation name. */
DannotationUsage_missing_AT_for_variable_decl.ets27 /* @@? 19:1 Error TypeError: Annotation missing '@' symbol before annotation name. */
29 /* @@? 23:5 Error TypeError: Annotation missing '@' symbol before annotation name. */
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/08.statements/08.for_statements/
Dfor_loop_incorrect_params.params.yaml17 - doc: missing parentheses
21 - doc: missing right parentheses
25 - doc: missing left parentheses
29 - doc: missing opening curly bracket
33 - doc: missing closing curly bracket
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/
D.pylintrc23 missing-docstring,
24 missing-function-docstring,
25 missing-module-docstring,
26 missing-class-docstring,
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/04.names_declarations_and_scopes/08.function_declarations/
Dfunction_decl_neg.params.yaml16 # missing return type
19 # missing name
27 # missing parameters
32 # missing colon
35 # missing body
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/17.experimental_features/07.statements/01.for-of_type_annotation/
Dfor_of_n.params.yaml54 // missing right parenthesis
59 // missing left parenthesis
64 // missing both parentheses
69 // missing semicolon separating type
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/02.lexical_elements/09.literals/04.bigint_literals/
Dbigint_func_n.params.yaml16 - 'BigInt() // missing argument'
21 - 'BigInt.asIntN() // missing arguments'
27 - 'BigInt.asUintN() // missing arguments'
/arkcompiler/ets_frontend/ets2panda/test/ast/parser/ts/
Dcatch_or_finally_1.ts22 /* @@? 16:22 Error SyntaxError: Missing catch or finally clause. */
24 /* @@? 17:23 Error SyntaxError: Missing catch or finally clause. */
35 /* @@? 36:1 Error SyntaxError: Missing catch or finally clause. */
/arkcompiler/runtime_core/static_core/plugins/ets/playground/frontend/src/models/
Doptions.test.ts35 it('should handle missing fields by setting defaults', () => {
39 // missing `values` and `default` fields
52 it('should return an empty array if compileOptions is missing', () => {
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/04.array_literal/
Darr_n.params.yaml17 let a: (number|undefined)[] = [ 1, 2, 3, , 4, ] // missing elements not allowed in sts
20 let a: undefined[] = [,] // missing elements not allowed in sts
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/08.statements/09.for_of_statements/
Dfor_of_neg.params.yaml59 // missing right parenthesis
64 // missing left parenthesis
69 // missing both parentheses
/arkcompiler/runtime_core/tests/cts-coverage-tool/bin/
Dspectrac.rb63 # check that required arguments aren't missing
64 missing = %i[spec testdir testglob].select { |param| options[param].nil? }
65 raise OptionParser::MissingArgument, missing.join(', ') unless missing.empty?
/arkcompiler/runtime_core/static_core/tests/cts-coverage-tool/bin/
Dspectrac.rb63 # check that required arguments aren't missing
64 missing = %i[spec testdir testglob].select { |param| options[param].nil? }
65 raise OptionParser::MissingArgument, missing.join(', ') unless missing.empty?
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/class_extension/
Dindex.ts16 //@ts-ignore -- to avoid @types/node missing
18 //@ts-ignore -- to avoid @types/node missing
29 //@ts-ignore -- to avoid @types/node missing
/arkcompiler/ets_frontend/es2panda/test/parser/ts/
Dtest-class-constructor2-expected.txt1 SyntaxError: Constructor implementation is missing. [test-class-constructor2.ts:21:5]
Dtest-class-constructor4-expected.txt1 SyntaxError: Constructor implementation is missing. [test-class-constructor4.ts:18:5]
Dtest-class-constructor6-expected.txt1 SyntaxError: Constructor implementation is missing. [test-class-constructor6.ts:19:5]
Dtest-class-constructor1-expected.txt1 SyntaxError: Constructor implementation is missing. [test-class-constructor1.ts:20:5]

12345678910