-
Notifications
You must be signed in to change notification settings - Fork 520
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[release/6.0.3xx] [runtime] Fix 'skip_nested_brace' to not read past …
…the string. Fixes #15253. (#15462) Fix 'skip_nested_brace' to not double skip characters. Also add a test. Fixes #15253. Backport of #15257 Co-authored-by: Rolf Bjarne Kvinge <[email protected]>
- Loading branch information
1 parent
67ea402
commit 5889016
Showing
3 changed files
with
43 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -425,7 +425,6 @@ | |
case '}': | ||
return type++; | ||
default: | ||
type++; | ||
break; | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5889016
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.
📋 [CI Build] API Diff 📋
API Current PR diff
✅ API Diff (from PR only) (no change)
View API diff
View dotnet API diff
View dotnet legacy API diff
View dotnet iOS-MacCatalayst API diff
API diff
✅ API Diff from stable
View API diff
View dotnet API diff
View dotnet legacy API diff
View dotnet iOS-MacCatalayst API diff
Generator diff
✅ Generator Diff (no change)
Pipeline on Agent XAMMINI-056.Monterey
Hash: 5889016a5b340588eb5befd93bcb51d71fe53130
5889016
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.
📚 [CI Build] Artifacts 📚
Packages generated
View packages
Pipeline on Agent XAMMINI-050.Monterey
Hash: 5889016a5b340588eb5befd93bcb51d71fe53130
5889016
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.
💻 [CI Build] Tests on macOS Mac Catalina (10.15) passed 💻
✅ All tests on macOS Mac Catalina (10.15) passed.
Pipeline on Agent
Hash: 5889016a5b340588eb5befd93bcb51d71fe53130
5889016
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.
❌ [CI Build] Tests on macOS M1 - Mac Big Sur (11.5) failed ❌
Failed tests are:
Pipeline on Agent
Hash: 5889016a5b340588eb5befd93bcb51d71fe53130
5889016
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.
✅ [CI Build] Tests passed on VSTS: simulator tests iOS. ✅
Tests passed on VSTS: simulator tests iOS.
🎉 All 234 tests passed 🎉
Pipeline on Agent XAMBOT-1030.Monterey'
[release/6.0.3xx] [runtime] Fix 'skip_nested_brace' to not read past the string. Fixes #15253. (#15462)