-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
[Go] Add Iterative tree walker in go #3740
Conversation
Signed-off-by: Rishabh Arya <rishabh.aryain@gmail.com>
Signed-off-by: Rishabh Arya <rishabh.aryain@gmail.com>
7d259d2
to
9c480dc
Compare
Now that I have merged the update to the Go Target made by @jimidle maybe you guys can take another look to ensure it is compatible. |
I will take a look at this after 4.11.0 is released. Right now, I do not know if anyone has attempted this, but it is probably best done with generics and current tree stuff does not use generics... yet. |
@parrt Would you please assign this to me, or label it with Go. |
This code now needs to be moved in to the /v4 version of the go runtime. I have not tried this and there are no tests, but as it is a new file, it seems safe enough. We can merge this one and I can copy it to the v4 version. |
@jimidle so I should merge this one and then you will copy it to v4? |
Yes. Let’s do that. The OP hasn’t resubmitted. It’s a small addition, so I
can just do it.
…On Fri, Sep 16, 2022 at 07:59 Terence Parr ***@***.***> wrote:
@jimidle <https://github.com/jimidle> so I should merge this one and then
you will copy it to v4?
—
Reply to this email directly, view it on GitHub
<#3740 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAJ7TMEDSQO3AVPPEYPVN5DV6OZ7RANCNFSM5X433ZKQ>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
done @jimidle ! |
Adding the iterative tree walker implementation for GO, inspired by the java iterative walker
#1231