Skip to content

Fix UndefVarError in get_exct(::ConcreteCallInfo) - #706

Merged
serenity4 merged 1 commit into
JuliaDebug:masterfrom
jishnub:fix-concretecallinfo-exct
Aug 22, 2026
Merged

serenity4 merged 1 commit into
JuliaDebug:masterfrom
jishnub:fix-concretecallinfo-exct

Conversation

@jishnub

@jishnub jishnub commented Aug 20, 2026

Copy link
Copy Markdown
Contributor

get_exct(::ConcreteCallInfo) binds its argument as cici but references ceci in the body, so any call throws UndefVarError: ceci. The sibling accessors (get_ci, get_rt, get_effects) all use ceci.

julia> cci = Cthulhu.ConcreteCallInfo(Cthulhu.PureCallInfo(Any[], Float64), Any[]);

julia> Cthulhu.get_exct(cci)
ERROR: UndefVarError: `ceci` not defined in `Cthulhu`

After this change it returns Union{}.

The terminal UI never hits this, since show_callinfo(::ConcreteCallInfo) calls __show_limited without an exct argument — but it is reachable for anything that queries the accessors directly.

🤖 Generated with Claude Code

The method bound its argument as `cici` but referenced `ceci` in the body.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
@codecov-commenter

Copy link
Copy Markdown

Codecov Report

❌ Patch coverage is 0% with 1 line in your changes missing coverage. Please review.
✅ Project coverage is 0.00%. Comparing base (2c33b9a) to head (fce3219).
⚠️ Report is 99 commits behind head on master.

Files with missing lines Patch % Lines
src/compiler/callsite.jl 0.00% 1 Missing ⚠️
Additional details and impacted files
@@           Coverage Diff           @@
##           master    #706    +/-   ##
=======================================
  Coverage    0.00%   0.00%            
=======================================
  Files           9      22    +13     
  Lines        1556    1808   +252     
=======================================
- Misses       1556    1808   +252     

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@serenity4

Copy link
Copy Markdown
Collaborator

Merging this as it is a very simple typo fix. Thanks!

@serenity4
serenity4 merged commit c4cfc0d into JuliaDebug:master Aug 22, 2026
9 of 13 checks passed
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.

3 participants