Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[photran] Code Outline

Hello,
         Looks like there as a problem with outline view of a code in phortran, can this be fixed?. Have a look at the example code:
--------------------------------------------------------------------
module Test
implicit none
 type A
 end type A
 ! Comment the interface lines to not see the problem (next three lines)
 interface B
 module procedure C,D,E ! the problem arises becuase of moduel key word here.
 end interface B
 ! you will see that  C is being considered as a module with
 ! E,F,G as its contents
 type F
 end type F
 contains
 subroutine G
 end subroutine G
end module Test
--------------------------------------------------------------

--
-----------------------------------------------------
Dharmendar Reddy Palle
Graduate Student
Microelectronics Research center,
University of Texas at Austin,
10100 Burnet Road, Bldg. 160
MER 2.608F, TX 78758-4445
e-mail: dharmareddy84@xxxxxxxxx
Phone: +1-512-350-9082
United States of America.


Back to the top