Skip to content

Commit 51443c0

Browse files
committed
Add support for Fortran
- Lua file for Fortran support is added
1 parent 9f85c44 commit 51443c0

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
return {
2+
["interface"] = "interface",
3+
block_construct = "block_construct",
4+
derived_type_definition = "derived_type_definition",
5+
derived_type_procedures = "derived_type_procedures",
6+
do_loop_statement = "do_loop_statement",
7+
else_clause = "else_clause",
8+
elseif_clause = "elseif_clause",
9+
["function"] = "function",
10+
function_statement = "function_statement",
11+
if_statement = "if_statement",
12+
included_items = "included_items",
13+
["subroutine"] = "subroutine",
14+
assignment_statement = "assignment_statement",
15+
subroutine_call = "subroutine_call",
16+
subroutine_statement = "subroutine_statement",
17+
variable_declaration = "variable_declaration",
18+
}

0 commit comments

Comments
 (0)