Skip to content

Commit a726c3a

Browse files
committed
fix(gleam): match both function_call and call nodes for parity with JS (#1105)
1 parent 6f67787 commit a726c3a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • crates/codegraph-core/src/extractors

crates/codegraph-core/src/extractors/gleam.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ fn match_gleam_node(node: &Node, source: &[u8], symbols: &mut FileSymbols, _dept
2424
"type_alias" => handle_type_alias(node, source, symbols),
2525
"constant" => handle_constant(node, source, symbols),
2626
"import" => handle_import(node, source, symbols),
27-
"function_call" => handle_call(node, source, symbols),
27+
"function_call" | "call" => handle_call(node, source, symbols),
2828
_ => {}
2929
}
3030
}

0 commit comments

Comments
 (0)