Home
last modified time | relevance | path

Searched full:formal (Results 1 – 25 of 48) sorted by relevance

12

/arkcompiler/ets_frontend/es2panda/test/parser/js/
Dtest-object-expression1-expected.txt1 SyntaxError: Setter must have exactly one formal parameter [test-object-expression1.js:19:1]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/15.semantic_rules/07.overloading_and_overriding/02.override-compatible_signatures/
Dneg.params.yaml31 // naming formal parameters or type variables differently
37 // naming formal parameters or return types differently
105 // different formal parameter names
/arkcompiler/runtime_core/static_core/verification/
Dmessages.yaml117 … In a call to '${name}'. ${maybe_reg}Actual type: '${actual_type}'. Formal type: '${formal_type}'.
342 Cannot make a call to '${name}'. ${register} is physically incompatible with formal parameter.
349 …Cannot make a call to '${name}'. Formal parameter is of type 'Bot', but actual parameter is of typ…
356 Warning: formal and actual parameters are of type '${type}'.
361 message: "Warning: formal parameter is of type 'Top'. Accepted any type of actual parameter."
368 …Warning: formal type is '${formal_type}' but actual is '${actual_type}'. Actual type is an inexact…
378 …is not compatible with formal lambda type '${formal_type}' (physical type '${physical_formal_type}…
391 Formal type: '${formal_type}'.
Dverification.yaml28 wrong_formal_param: Wrong formal parameter type.
/arkcompiler/ets_frontend/ets2panda/test/ast/parser/js/
Dtest-object-expression1.js21 /* @@? 19:1 Error SyntaxError: Setter must have exactly one formal parameter */
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/32.lambda_expression/04.runtime_evaluation_of_lambda_expressions/
Dlambda_captured_formal_parameter.sts17 desc: lambda captured formal parameter.
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/09.constructor_declaration/01.formal_parameters/
Dconstructor_declaration_with_parameters.sts18 assert: The formal parameters of a constructor are identical in syntax and semantics to those of a …
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/01.class_declaration/enclosing_instances/
Duse_instance_const_variables_in_inner_class.sts20 assert: Any local variable, formal parameter, or exception and panic parameter used but not declare…
Duse_instance_variables_in_inner_class.sts20 assert: Any local variable, formal parameter, or exception and panic parameter used but not declare…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/01.evaluation_of_expressions/05.evaluation_of_other_expressions/
Dexc.sts20 exception object is an instanceof the type of the formal parameter of
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/
Dmir_function.h47 // describe a formal definition in a function declaration
53 TypeAttrs formalAttrs = TypeAttrs(); // the formal's type attributes
1149 auto *formal = formalDefVec[i].formalSym; in GetFormalName() local
1150 if (formal != nullptr) { in GetFormalName()
1151 return formal->GetName(); in GetFormalName()
1611 // the Nth word in the formal parameters area
1625 // the Nth word in the formal parameters area
Dcmpl.h37 // the Nth word in the formal parameters area
51 // the Nth word in the formal parameters area
Dmir_symbol.h50 …olType { // a symbol can either be a const or a function or a preg which currently used for formal
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/
Dets_coroutine.h37 …* Since C++ requires function type to exactly match the formal parameter type, we have to make thi…
/arkcompiler/ets_frontend/ets2panda/parser/
DexpressionParser.cpp283 ThrowSyntaxError("Insufficient formal parameter in arrow function."); in ValidateArrowParameter()
387 … ThrowSyntaxError("Rest parameter must be last formal parameter", arguments.back()->End()); in ConvertToArrowParameter()
430 ThrowSyntaxError("Rest parameter must be last formal parameter"); in ValidateArrowFunctionRestParameter()
1848 ThrowSyntaxError("Illegal await-expression in formal parameters of async function"); in ParsePatternElementErrorCheck()
2103 ThrowSyntaxError("Setter must have exactly one formal parameter"); in ParsePropertyValue()
2107 ThrowSyntaxError("Getter must not have formal parameters"); in ParsePropertyValue()
DparserImpl.cpp422 ThrowSyntaxError("Setter must have exactly one formal parameter"); in ValidateClassSetter()
431 ThrowSyntaxError("Getter must not have formal parameters"); in ValidateClassGetter()
825 ThrowSyntaxError("Rest parameter must be last formal parameter."); in ValidateRestParameter()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/
Dmir_symbol.cpp354 // exclude unused symbols, formal symbols and extern functions in Dump()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_me/include/
Dorig_symbol.h368 …bool isFormal; // it's from the formal parameters so the type must be kSymbolOst or kPregOst afte…
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/
Daarch64_memlayout.cpp122 /* size > 16 is passed on stack, the formal is just a pointer to the copy on stack. */ in SetSizeAlignForTypeIdx()
537 * This has to be done after all of formal parameters and local in LayoutActualParams()
/arkcompiler/runtime_core/static_core/docs/
Dassembly_format.md464 * Compose formal definitions for literals.
/arkcompiler/runtime_core/static_core/plugins/ets/doc/spec/
D6_conversions.rst152 formal parameter of a function, method, constructor or lambda call (see
169 formal parameter
/arkcompiler/runtime_core/docs/
Dassembly_format.md561 * Compose formal definitions for literals.
/arkcompiler/ets_frontend/es2panda/parser/
DexpressionParser.cpp372 ThrowSyntaxError("Insufficient formal parameter in arrow function."); in ValidateArrowParameter()
588 ThrowSyntaxError("Rest parameter must be last formal parameter"); in ParseCoverParenthesizedExpressionAndArrowParameterList()
2203 ThrowSyntaxError("Setter must have exactly one formal parameter"); in ParsePropertyValue()
2207 ThrowSyntaxError("Getter must not have formal parameters"); in ParsePropertyValue()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/aarch64/
Daarch64_cgfunc.h888 * Local variables, formal parameters that are passed via registers
908 …RegOperand *fsp = nullptr; /* used to point the address of local variables and formal parameters */
/arkcompiler/ets_frontend/arkguard/src/configs/test262filename/
DfilterFilenameList.json69 … "language/expressions/async-arrow-function/early-errors-arrow-arguments-in-formal-parameters.js",
71 "language/expressions/async-arrow-function/early-errors-arrow-eval-in-formal-parameters.js",
78 "language/expressions/async-function/early-errors-expression-eval-in-formal-parameters.js",
90 … "language/expressions/async-generator/early-errors-expression-arguments-in-formal-parameters.js",
92 "language/expressions/async-generator/early-errors-expression-eval-in-formal-parameters.js",
140 "language/statements/async-function/early-errors-declaration-arguments-in-formal-parameters.js",
142 "language/statements/async-function/early-errors-declaration-eval-in-formal-parameters.js",

12