Skip to content

fix(lsp): walk all expression variants when collecting hints 🔍#136

Merged
timfennis merged 1 commit into
masterfrom
bugfix/lsp-visitor-exhaustive-walk
May 19, 2026
Merged

fix(lsp): walk all expression variants when collecting hints 🔍#136
timfennis merged 1 commit into
masterfrom
bugfix/lsp-visitor-exhaustive-walk

Conversation

@timfennis
Copy link
Copy Markdown
Owner

@timfennis timfennis commented May 19, 2026

Summary

  • The LSP's walk_expression had a _ => {} catch-all that skipped Call, List, Tuple, Map, Logical, Assignment, OpAssignment, and the range variants — so any lambda nested inside those (e.g. [1,2,3].map(fn(y) => y / 2.0)) never fired on_function_declaration and lost its return-type inlay hint, even though the analyser had already computed the type.
  • Make the match exhaustive so adding a new Expression variant produces a compile error instead of silently regressing visitor coverage.
  • Walk into Lvalue::Index { value, index } for the same reason — its child expressions could also hide a lambda (e.g. m[f(fn(x) => x)] = 1).

Test plan

  • cargo test -p ndc_lsp — existing inlay-hint tests pass; two new regression tests pass (lambda_inside_call_gets_return_type_inlay, lambda_inside_list_literal_gets_return_type_inlay).
  • cargo test — full suite green.
  • cargo fmt, cargo clippy -p ndc_lsp — no new warnings introduced.
  • Manual: open test.ndc in an editor with the LSP attached; the inner lambda in [1,2,3].map(fn(y) => y / 2.0) shows a -> Number inlay hint.

Note: the lambda's return type displays as Number (not Float) because y is unannotated and the analyser LUBs all / overloads. Sharpening that result is follow-up work in the analyser/dispatch logic, not in scope here.

🤖 Generated with Claude Code

The AST walker had a `_ => {}` catch-all that skipped Call, List, Tuple,
Map, Logical, Assignment, OpAssignment, and range expressions, so any
lambda nested inside those never fired `on_function_declaration` — losing
its return-type inlay hint. The analyser was already computing the type;
the LSP just never reached the node.

Make the match exhaustive so a new Expression variant produces a compile
error instead of a silent regression, and walk into Lvalue::Index for the
same reason.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Copy link
Copy Markdown

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 8113c70e4a

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment thread ndc_lsp/src/visitor.rs
@timfennis timfennis merged commit 2f4a0df into master May 19, 2026
1 check passed
@timfennis timfennis deleted the bugfix/lsp-visitor-exhaustive-walk branch May 19, 2026 12:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant