mirror of
https://github.com/apple/swift.git
synced 2026-06-20 15:42:51 +02:00
3bffa7970d
We ran SwiftParser in `handlePrimaryAST` for related identifiers. That function is called on a dispatch queue with reduced stack size and could cause the parser to stack overflow if the program is very nested. Run `handlePrimaryAST` on a deep stack for this request to fix the issue. rdar://129960285