Skip to content

Commit

Permalink
Update atom to partly support #780
Browse files Browse the repository at this point in the history
Signed-off-by: Prabhu Subramanian <[email protected]>
  • Loading branch information
prabhu committed Dec 19, 2023
1 parent 4e0f6ae commit fd0080e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion evinser.js
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ export const parseSliceUsages = async (
.concat(ausage?.invokedCalls || [])
.concat(ausage?.argToCalls || [])
.concat(ausage?.procedures || [])) {
if (acall.resolvedMethod.startsWith("@")) {
if (acall.resolvedMethod && acall.resolvedMethod.startsWith("@")) {
typesToLookup.add(acall.callName);
if (acall.lineNumber) {
addToOverrides(
Expand Down

0 comments on commit fd0080e

Please sign in to comment.