-
Couldn't load subscription status.
- Fork 25.7k
[Inlined Callstack Fix] Fix inlined callstack for blocks of the node. #56562
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
6ec9ac3
[Inlined Callstack Fix] Fix inlined callstack for blocks of the node.
kimishpatel 2d424ca
Update on "[Inlined Callstack Fix] Fix inlined callstack for blocks o…
kimishpatel 537b458
Update on "[Inlined Callstack Fix] Fix inlined callstack for blocks o…
kimishpatel 971bca0
Update on "[Inlined Callstack Fix] Fix inlined callstack for blocks o…
kimishpatel 38f7083
Update on "[Inlined Callstack Fix] Fix inlined callstack for blocks o…
kimishpatel eaa7e48
Update on "[Inlined Callstack Fix] Fix inlined callstack for blocks o…
kimishpatel fffb963
Update on "[Inlined Callstack Fix] Fix inlined callstack for blocks o…
kimishpatel be37864
Update on "[Inlined Callstack Fix] Fix inlined callstack for blocks o…
kimishpatel d69a566
Update on "[Inlined Callstack Fix] Fix inlined callstack for blocks o…
kimishpatel f5fdc0b
Update on "[Inlined Callstack Fix] Fix inlined callstack for blocks o…
kimishpatel a0be9bc
Update on "[Inlined Callstack Fix] Fix inlined callstack for blocks o…
kimishpatel 69b46cb
Update on "[Inlined Callstack Fix] Fix inlined callstack for blocks o…
kimishpatel 5db2bc6
Update on "[Inlined Callstack Fix] Fix inlined callstack for blocks o…
kimishpatel 2a0da64
Update on "[Inlined Callstack Fix] Fix inlined callstack for blocks o…
kimishpatel 17134a4
Update on "[Inlined Callstack Fix] Fix inlined callstack for blocks o…
kimishpatel 2ced766
Update on "[Inlined Callstack Fix] Fix inlined callstack for blocks o…
kimishpatel c224410
Update on "[Inlined Callstack Fix] Fix inlined callstack for blocks o…
kimishpatel 0b8b13a
Update on "[Inlined Callstack Fix] Fix inlined callstack for blocks o…
kimishpatel File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: this could be factored out as a function
findNodeOfGivenKindor something like this.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Btw, you could try to use subgraph matcher for this, but i'm not sure that with the required boilerplate code it would be beneficial.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This comment still applies.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
True. But looking at this, it looks like it is just a 10ish lines of code without much resuse. If more similar code is added I suppose we can refactor. So for now I will leave it as is unless you have a strong opinion about it.