-
Notifications
You must be signed in to change notification settings - Fork 1.4k
XmlParser - Refactor TryParseUnicodeValue to match TryParseUnicodeValueHex #6040
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
Conversation
WalkthroughReworks internal XML parsing in Changes
Sequence Diagram(s)sequenceDiagram
participant Loader as Parser.LoadDocument
participant Src as _xmlSource
participant P as XmlParser
rect `#f3f7ff`
Loader->>P: Start parsing
P->>Src: MoveNext / Peek (read chars)
alt Start element
P->>P: TryReadStartElement()
P->>P: TryReadName() — local `chr` loop
P->>P: _ = TryReadAttributes()
end
alt Unicode/Hex sequence
P->>P: TryParseUnicodeValue / TryParseUnicodeValueHex()
note right of P `#e9f9ee`: local char, explicit digit/hex checks\nenforce max Unicode
end
alt End-tag / token validation
P->>P: foreach char → validate (no index arithmetic)
end
P->>Loader: Return parsed document or throw (errors include line info)
end
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20 minutes
Poem
Pre-merge checks and finishing touches❌ Failed checks (1 warning, 1 inconclusive)
✅ Passed checks (1 passed)
✨ Finishing touches
🧪 Generate unit tests (beta)
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro 📒 Files selected for processing (1)
🚧 Files skipped from review as they are similar to previous changes (1)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
1ded975 to
cd2b59d
Compare
cd2b59d to
bedb1b7
Compare
|



No description provided.