Re: [swift-dev] Property modification not taking effect

2017-05-10 Thread John McCall via swift-dev
> On May 10, 2017, at 11:06 AM, Pushkar N Kulkarni > wrote: > The issue is seen with the 05-09 dev snapshot. However after updating the > repos today, I no longer see it! > > Looks like one of yesterday's commits (which did not go into 05-09) fixed > it. I am closing the JIRA report. Thanks!

Re: [swift-dev] Porting Swift to Haiku

2017-05-10 Thread Joe Groff via swift-dev
> On May 7, 2017, at 4:22 PM, William Dillon via swift-dev > wrote: > > Hi Joseph, > > That’s awesome!! I love BeOS back in the day. > > I work on the 32-bit swift port for ARM/Linux. Swift works just fine with > 32-bit systems. I don't think there's much to do to port Swift to a 32-bit L

Re: [swift-dev] Property modification not taking effect

2017-05-10 Thread Pushkar N Kulkarni via swift-dev
The issue is seen with the 05-09 dev snapshot. However after updating the repos today, I no longer see it! Looks like one of yesterday's commits (which did not go into 05-09)  fixed it. I am closing the JIRA report. Thanks!Pushkar N Kulkarni, IBM RuntimesSimplicity is prerequisite for reliability -

Re: [swift-dev] Property modification not taking effect

2017-05-10 Thread Pushkar N Kulkarni via swift-dev
Thanks John. This is the JIRA bug report: https://bugs.swift.org/browse/SR-4852I was able to write a small test case that shows the regression:enum State {    case ready(TState)    case inProgress(TState)    var isPaused: Bool {        switch self {        case .ready: return false        case .inP