@@ -28,7 +28,7 @@ class symbolt;
28
28
// / \param module: Name of the file that has been parsed.
29
29
// / \param message_handler: Used to provide debug information and error
30
30
// / messages.
31
- // / \return: False if no errors occurred, true otherwise.
31
+ // / \return False if no errors occurred, true otherwise.
32
32
bool statement_list_typecheck (
33
33
const statement_list_parse_treet &parse_tree,
34
34
symbol_tablet &symbol_table,
@@ -198,7 +198,7 @@ class statement_list_typecheckt : public typecheckt
198
198
// / Creates a data block type for the given function block.
199
199
// / \param function_block: Function block with an interface that should be
200
200
// / converted to a data block.
201
- // / \return: A type representation of an instance data block for the
201
+ // / \return A type representation of an instance data block for the
202
202
// / function block.
203
203
struct_typet create_instance_data_block_type (
204
204
const statement_list_parse_treet::function_blockt &function_block);
@@ -627,7 +627,7 @@ class statement_list_typecheckt : public typecheckt
627
627
// / Performs a typecheck on a STL instruction with an additional operand that
628
628
// / should be no constant.
629
629
// / \param op_code: OP code of the instruction.
630
- // / \return: Reference to the operand.
630
+ // / \return Reference to the operand.
631
631
const symbol_exprt &
632
632
typecheck_instruction_with_non_const_operand (const codet &op_code);
633
633
@@ -655,7 +655,7 @@ class statement_list_typecheckt : public typecheckt
655
655
// / \param tia_element: Symbol representation of the TIA element.
656
656
// / \param negate: Whether the operand should be negated (e.g. for the
657
657
// / `AND NOT` expression).
658
- // / \return: Typechecked operand.
658
+ // / \return Typechecked operand.
659
659
exprt typecheck_simple_boolean_instruction_operand (
660
660
const codet &op_code,
661
661
const symbolt &tia_element,
@@ -677,7 +677,7 @@ class statement_list_typecheckt : public typecheckt
677
677
// / Performs a typecheck on the given identifier and returns its symbol.
678
678
// / \param identifier: Identifier that should be checked.
679
679
// / \param tia_element: Symbol representation of the current TIA module.
680
- // / \return: Expression including the symbol's name and type.
680
+ // / \return Expression including the symbol's name and type.
681
681
exprt
682
682
typecheck_identifier (const symbolt &tia_element, const irep_idt &identifier);
683
683
@@ -717,7 +717,7 @@ class statement_list_typecheckt : public typecheckt
717
717
// / \param assignments: Assignment list of the function call.
718
718
// / \param param: Parameter that should be checked.
719
719
// / \param tia_element: Symbol representation of the TIA element.
720
- // / \return: Expression including the assigned symbol's name and type.
720
+ // / \return Expression including the assigned symbol's name and type.
721
721
exprt typecheck_function_call_arguments (
722
722
const std::vector<equal_exprt> &assignments,
723
723
const code_typet::parametert ¶m,
@@ -727,7 +727,7 @@ class statement_list_typecheckt : public typecheckt
727
727
// / returns the typechecked version.
728
728
// / \param tia_element: Symbol representation of the TIA element.
729
729
// / \param rhs: Expression that the function parameter got assigned to.
730
- // / \return: Expression of either a symbol or a constant.
730
+ // / \return Expression of either a symbol or a constant.
731
731
exprt typecheck_function_call_argument_rhs (
732
732
const symbolt &tia_element,
733
733
const exprt &rhs);
@@ -738,7 +738,7 @@ class statement_list_typecheckt : public typecheckt
738
738
// / \param assignments: Assignment list of the function call.
739
739
// / \param return_type: Type of the return value.
740
740
// / \param tia_element: Symbol representation of the TIA element.
741
- // / \return: Expression including the assigned symbol's name and type.
741
+ // / \return Expression including the assigned symbol's name and type.
742
742
exprt typecheck_return_value_assignment (
743
743
const std::vector<equal_exprt> &assignments,
744
744
const typet &return_type,
0 commit comments