Brandon Williams

Results 96 comments of Brandon Williams

Hi @jasin755, do you plan on still working on this? If not, what do you think about closing it out until you are ready?

Hi @randomeizer, these are definitely powerful parsers, and we do have a [version of this](https://github.com/pointfreeco/pointfreeco/blob/main/Sources/TranscriptParser/PrefixUpTo.swift) directly in our pointfreeco codebase for parsing our transcript markdown files. However, the main reason...

Hi @sk409, I believe the only way `runActivity` could be called on a background thread is if your test is running on a background thread. Instead of this change can...

Hi @zachwaugh, thanks for the report, but unfortunately without a repro it's hard to diagnose. The precondition failure message ("precondition failure: setting value during update") seems to clearly describe the...

Hi @andreyz, your crash does not seem to be related to the one discussed here. The one in this issue has stack frames with `AG::Graph`, which is from `AttributeGraph` that...

Hi @griffrawk & @russellyeo, this unfortunately seems to be a Swift compiler bug in `@rethrows`. That is a mechanism to allow one to have throwing requirements in protocols such that...

Hi @griffrawk, if you look at the implementation of `replaceError` you will see that when an error is thrown, the original input is restored. This means `replaceError` does not consume...

Hi @ivancantarino, we think it would be best for someone in the community to support this library. Since we do not use CoreLocation on the regular, we are not the...

@iSapozhnik, @gsabran, @doozMen: The library is extensible so that you can add your own snapshot strategies if the ones in the library do not suite your needs. You will see...

We have learned that it is best to leave off `Sendable` constraints on protocols if possible, and instead make concrete types `Sendable` (or conditionally sendable if they have a generic)....