Skip to content

case feature not working for specifier of intent #108

Open
@JHenneberg

Description

@JHenneberg

-i 2 --case 1 1 1 1

before:

module myModule
  implicit none
  private
contains
  subroutine MySubroutine(int)
    implicit none

    integer(4), INTENT(IN) :: int

  end subroutine MySubroutine
end module myModule

after:

module myModule
  implicit none
  private
contains
  subroutine MySubroutine(int)
    implicit none

    integer(4), intent(IN) :: int

  end subroutine MySubroutine
end module myModule

expected:

module myModule
  implicit none
  private
contains
  subroutine MySubroutine(int)
    implicit none

    integer(4), intent(in) :: int

  end subroutine MySubroutine
end module myModule

The keyword intent is taken care of but not of the corresponding specifier in, inout or out concerning upper-/lower case.

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementEnhancement to existing feature

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions