10
0
mirror of https://gitlab.com/scemama/irpf90.git synced 2024-06-02 11:25:19 +02:00

Updated regexp for type

This commit is contained in:
Anthony Scemama 2024-04-22 10:42:58 +02:00
parent ba1a2837aa
commit 76946321d6

View File

@ -46,7 +46,7 @@ re_decl = re.compile( "".join( [ r"^\ *",
r"|intrinsic *(::)?", r"|intrinsic *(::)?",
r"|external *(::)?", r"|external *(::)?",
r"|equivalence *(::)?", r"|equivalence *(::)?",
r"|type", r"|type ?\(",
r"|end ?type", r"|end ?type",
r")[^=(]" r")[^=(]"
] ) ) ] ) )