String representation of a compiler object
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(compiler_t), | intent(in) | :: | self | Instance of the compiler object | 
Representation as string
pure function debug_compiler(self) result(repr) !> Instance of the compiler object type(compiler_t), intent(in) :: self !> Representation as string character(len=:), allocatable :: repr repr = 'fc="'//self%fc//'", cc="'//self%cc//'"' end function debug_compiler