def accept(self, visitor: Visitor): return visitor.visit_increment_decrement_command(self)
def accept(self, visitor: Visitor) -> str: return visitor.visit_program(self)
def accept(self, visitor: Visitor): return visitor.visit_write_command(self)
def accept(self, visitor: Visitor): return visitor.visit_jump_command(self)
def accept(self, visitor: Visitor): return visitor.visit_array_declaration(self)
def accept(self, visitor: Visitor): return visitor.visit_read_command(self)
def accept(self, visitor: Visitor): return visitor.visit_if_then_command(self)
def accept(self, visitor: Visitor): return visitor.visit_array_element_by_variable_identifier(self)
def accept(self, visitor: Visitor): return visitor.visit_commands(self)
def accept(self, visitor: Visitor): return visitor.visit_assignment_command(self)
def accept(self, visitor: Visitor): return visitor.visit_two_value_condition(self)
def accept(self, visitor: Visitor): return visitor.visit_expression_having_two_values(self)
def accept(self, visitor: Visitor): return visitor.visit_declarations(self)
def accept(self, visitor: Visitor): return visitor.visit_identifier_value(self)
def accept(self, visitor: Visitor): return visitor.visit_do_while_command(self)
def accept(self, visitor: Visitor): return visitor.visit_variable_identifier(self)
def accept(self, visitor: Visitor): return visitor.visit_int_number_value(self)
def accept(self, visitor: Visitor): return visitor.visit_array_element_by_int_number_identifier(self)
def accept(self, visitor: Visitor): return visitor.visit_number_declaration(self)