You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(workflow): avoid redundant file I/O when resolving callsite source
Previously, the `Atom` class attempted to reread the source file to retrieve
callsite source code during runtime error reporting. This fallback logic is now
commented out to prevent repeated file reads, which can be inefficient and
unnecessary.
A `TODO` comment has been added to centralize line buffer access in the
service layer. In the meantime, if `callsite_source` is missing, it will simply
be omitted rather than triggering another file read.
Also updated `register_error(...)` to explicitly include the `source` field,
defaulting to an empty string when unavailable.
0 commit comments