Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork9.7k
[Yaml] fix parsing comments not prefixed by a space#38229
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
xabbuh commentedSep 18, 2020
| Q | A |
|---|---|
| Branch? | 3.4 |
| Bug fix? | yes |
| New feature? | no |
| Deprecations? | no |
| Tickets | Fix#38223 |
| License | MIT |
| Doc PR |
stof commentedSep 18, 2020
how does this behave for unquoted values ? |
xabbuh commentedSep 18, 2020 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
@stof Works the same as before because the internal pointer already points at the end of the unquoted string when the changed line of code is reached. Though I added an additional test case to ensure this doesn't accidentally break in the future. |
stof commentedSep 18, 2020
@xabbuh great |