You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Motivation:
An expression in `SwiftRunCommand` was taking almost 2 seconds to type
check on my M4 MacBook.
### Modifications:
Break it out in to multiple, faster to type check expressions.
### Result:
This brings each individual expression down to under 80ms to check.
This was diagnosed with:
```
swift build \
-Xswiftc -Xfrontend -Xswiftc -warn-long-function-bodies=80 \
-Xswiftc -Xfrontend -Xswiftc -warn-long-expression-type-checking=80
```
0 commit comments