-
Notifications
You must be signed in to change notification settings - Fork 112
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
Clean up XMLStackParser
#26
Conversation
Codecov Report
@@ Coverage Diff @@
## master #26 +/- ##
==========================================
- Coverage 48.74% 48.66% -0.08%
==========================================
Files 28 28
Lines 1629 1644 +15
==========================================
+ Hits 794 800 +6
- Misses 835 844 +9
Continue to review full report at Codecov.
|
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.
thank you @regexident! lgtm, except a few guard checks that could be grouped together
@hodovani do you have any comments or questions about he PR? this can be merged otherwise. |
…nt:namespaceURI:qualifiedName:attributes:)`
No question from me, thank you @regexident! |
This PR consists of mostly migrations from
if let
toguard let
as well as other semantics-preserving changed to keep the conditional nesting low and make the control flow clear (i.e. the happy/expected path is the one with the least detours intoif
orif let
blocks).