Skip to content
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

Foreach with nested Invocations breaking #175

Closed
belav opened this issue May 5, 2021 · 2 comments
Closed

Foreach with nested Invocations breaking #175

belav opened this issue May 5, 2021 · 2 comments
Labels

Comments

@belav
Copy link
Owner

belav commented May 5, 2021

                        foreach (
                            var childType in typesByName[type.name].fields.Select(
                                    field => field.type
                                )
                                .Where(isObject)
                        ) {
                            recurseReturned(childType);
                        }
// should be something like
                        foreach (
                            var childType in typesByName[type.name].fields
                                .Select(field => field.type)
                                .Where(isObject)
                        ) {
                            recurseReturned(childType);
                        }
@belav belav added type:bug Something isn't working area:formatting labels May 5, 2021
@belav
Copy link
Owner Author

belav commented Jul 19, 2021

I believe this will be handled by #7

@belav
Copy link
Owner Author

belav commented Oct 19, 2021

This was resolves in #7

@belav belav closed this as completed Oct 19, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant