We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f67787 commit a726c3aCopy full SHA for a726c3a
1 file changed
crates/codegraph-core/src/extractors/gleam.rs
@@ -24,7 +24,7 @@ fn match_gleam_node(node: &Node, source: &[u8], symbols: &mut FileSymbols, _dept
24
"type_alias" => handle_type_alias(node, source, symbols),
25
"constant" => handle_constant(node, source, symbols),
26
"import" => handle_import(node, source, symbols),
27
- "function_call" => handle_call(node, source, symbols),
+ "function_call" | "call" => handle_call(node, source, symbols),
28
_ => {}
29
}
30
0 commit comments