hansec / fortran-language-server

Fortran Language Server for the Language Server Protocol
MIT License
295 stars 57 forks source link

F03 FINAL definitions not supported #175

Open hansec opened 3 years ago

hansec commented 3 years ago

The FINAL keyword for type-bound procedures is not supported (example below).

TYPE :: ex_type
  INTEGER :: A = 0
CONTAINS
  FINAL :: del_ex_type
  PROCEDURE :: sub => ex_sub
END TYPE ex_type