Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SR-5741] Refactoring action to convert from field initialization to computed property #48311

Closed
akyrtzi opened this issue Aug 23, 2017 · 2 comments
Labels
compiler The Swift compiler in itself feature A feature request or implementation good first issue Good for newcomers refactoring Area → source tooling: refactoring source tooling Area: IDE support, SourceKit, and other source tooling

Comments

@akyrtzi
Copy link
Member

akyrtzi commented Aug 23, 2017

Previous ID SR-5741
Radar None
Original Reporter @akyrtzi
Type New Feature
Status Resolved
Resolution Done
Additional Detail from JIRA
Votes 0
Component/s Source Tooling
Labels New Feature, Refactoring, StarterProposal
Assignee flap (JIRA)
Priority Medium

md5: 1141922e465ee61c7e4b4937b2fbb17c

Issue Description:

Implement action to convert from:

struct S {
  var field = 2
}

to:

struct S1 {
  var field: Int {
    return 2
  }
}
@swift-ci
Copy link
Collaborator

Comment by Anton Vlasov (JIRA)

#25141

@swift-ci
Copy link
Collaborator

swift-ci commented Jan 8, 2020

Comment by Anton Vlasov (JIRA)

Pull request is merged.

@swift-ci swift-ci transferred this issue from apple/swift-issues Apr 25, 2022
@AnthonyLatsis AnthonyLatsis added good first issue Good for newcomers feature A feature request or implementation compiler The Swift compiler in itself source tooling Area: IDE support, SourceKit, and other source tooling and removed new feature StarterProposal labels Nov 11, 2022
This issue was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
compiler The Swift compiler in itself feature A feature request or implementation good first issue Good for newcomers refactoring Area → source tooling: refactoring source tooling Area: IDE support, SourceKit, and other source tooling
Projects
None yet
Development

No branches or pull requests

3 participants