-
Notifications
You must be signed in to change notification settings - Fork 472
Code action to convert between computed property and stored property #2712
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
Merged
ahoppen
merged 1 commit into
swiftlang:main
from
antigluten:code-action-computed-properties
Jul 18, 2024
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
96 changes: 96 additions & 0 deletions
96
Sources/SwiftRefactor/ConvertComputedPropertyToStored.swift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,96 @@ | ||
| //===----------------------------------------------------------------------===// | ||
| // | ||
| // This source file is part of the Swift.org open source project | ||
| // | ||
| // Copyright (c) 2014 - 2024 Apple Inc. and the Swift project authors | ||
| // Licensed under Apache License v2.0 with Runtime Library Exception | ||
| // | ||
| // See https://swift.org/LICENSE.txt for license information | ||
| // See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors | ||
| // | ||
| //===----------------------------------------------------------------------===// | ||
|
|
||
| #if swift(>=6) | ||
| public import SwiftSyntax | ||
| #else | ||
| import SwiftSyntax | ||
| #endif | ||
|
|
||
| public struct ConvertComputedPropertyToStored: SyntaxRefactoringProvider { | ||
| public static func refactor(syntax: VariableDeclSyntax, in context: ()) -> VariableDeclSyntax? { | ||
| guard syntax.bindings.count == 1, let binding = syntax.bindings.first, | ||
| let accessorBlock = binding.accessorBlock, case let .getter(body) = accessorBlock.accessors, !body.isEmpty | ||
| else { | ||
| return nil | ||
| } | ||
|
|
||
| let refactored = { (initializer: InitializerClauseSyntax) -> VariableDeclSyntax in | ||
| let newBinding = | ||
| binding | ||
| .with(\.initializer, initializer) | ||
| .with(\.accessorBlock, nil) | ||
|
|
||
| let bindingSpecifier = syntax.bindingSpecifier | ||
| .with(\.tokenKind, .keyword(.let)) | ||
|
|
||
| return | ||
| syntax | ||
| .with(\.bindingSpecifier, bindingSpecifier) | ||
| .with(\.bindings, PatternBindingListSyntax([newBinding])) | ||
| } | ||
|
|
||
| guard body.count == 1 else { | ||
| let closure = ClosureExprSyntax( | ||
| leftBrace: accessorBlock.leftBrace, | ||
| statements: body, | ||
| rightBrace: accessorBlock.rightBrace | ||
| ) | ||
|
|
||
| return refactored( | ||
| InitializerClauseSyntax( | ||
| equal: .equalToken(trailingTrivia: .space), | ||
| value: FunctionCallExprSyntax(callee: closure) | ||
| ) | ||
| ) | ||
| } | ||
|
|
||
| guard body.count == 1, let item = body.first?.item else { | ||
| return nil | ||
| } | ||
|
|
||
| if let item = item.as(ReturnStmtSyntax.self), let expression = item.expression { | ||
| let trailingTrivia: Trivia = expression.leadingTrivia.isEmpty ? .space : [] | ||
| return refactored( | ||
| InitializerClauseSyntax( | ||
| leadingTrivia: accessorBlock.leftBrace.trivia, | ||
| equal: .equalToken(trailingTrivia: trailingTrivia), | ||
| value: expression, | ||
| trailingTrivia: accessorBlock.rightBrace.trivia.droppingTrailingWhitespace | ||
| ) | ||
| ) | ||
| } else if var item = item.as(ExprSyntax.self) { | ||
| item.trailingTrivia = item.trailingTrivia.droppingTrailingWhitespace | ||
| return refactored( | ||
| InitializerClauseSyntax( | ||
| equal: .equalToken(trailingTrivia: .space), | ||
| value: item, | ||
| trailingTrivia: accessorBlock.trailingTrivia | ||
| ) | ||
| ) | ||
| } | ||
|
|
||
| return nil | ||
| } | ||
| } | ||
|
|
||
| fileprivate extension TokenSyntax { | ||
| var trivia: Trivia { | ||
| return leadingTrivia + trailingTrivia | ||
| } | ||
| } | ||
|
|
||
| fileprivate extension Trivia { | ||
| var droppingTrailingWhitespace: Trivia { | ||
| return Trivia(pieces: self.reversed().drop(while: \.isWhitespace).reversed()) | ||
| } | ||
| } | ||
69 changes: 69 additions & 0 deletions
69
Sources/SwiftRefactor/ConvertStoredPropertyToComputed.swift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,69 @@ | ||
| //===----------------------------------------------------------------------===// | ||
| // | ||
| // This source file is part of the Swift.org open source project | ||
| // | ||
| // Copyright (c) 2014 - 2024 Apple Inc. and the Swift project authors | ||
| // Licensed under Apache License v2.0 with Runtime Library Exception | ||
| // | ||
| // See https://swift.org/LICENSE.txt for license information | ||
| // See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors | ||
| // | ||
| //===----------------------------------------------------------------------===// | ||
|
|
||
| #if swift(>=6) | ||
| public import SwiftSyntax | ||
| #else | ||
| import SwiftSyntax | ||
| #endif | ||
|
|
||
| public struct ConvertStoredPropertyToComputed: SyntaxRefactoringProvider { | ||
| public static func refactor(syntax: VariableDeclSyntax, in context: ()) -> VariableDeclSyntax? { | ||
| guard syntax.bindings.count == 1, let binding = syntax.bindings.first, let initializer = binding.initializer else { | ||
| return nil | ||
| } | ||
|
|
||
| var codeBlockSyntax: CodeBlockItemListSyntax | ||
|
|
||
| if let functionExpression = initializer.value.as(FunctionCallExprSyntax.self), | ||
| let closureExpression = functionExpression.calledExpression.as(ClosureExprSyntax.self) | ||
antigluten marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| { | ||
| guard functionExpression.arguments.isEmpty else { return nil } | ||
|
|
||
| codeBlockSyntax = closureExpression.statements | ||
| codeBlockSyntax.leadingTrivia = | ||
| closureExpression.leftBrace.leadingTrivia + closureExpression.leftBrace.trailingTrivia | ||
| + codeBlockSyntax.leadingTrivia | ||
| codeBlockSyntax.trailingTrivia += | ||
| closureExpression.trailingTrivia + closureExpression.rightBrace.leadingTrivia | ||
| + closureExpression.rightBrace.trailingTrivia + functionExpression.trailingTrivia | ||
| } else { | ||
| var body = CodeBlockItemListSyntax([ | ||
| CodeBlockItemSyntax( | ||
| item: .expr(initializer.value) | ||
| ) | ||
| ]) | ||
| body.leadingTrivia = initializer.equal.trailingTrivia + body.leadingTrivia | ||
| body.trailingTrivia += .space | ||
| codeBlockSyntax = body | ||
| } | ||
|
|
||
| let newBinding = | ||
| binding | ||
| .with(\.initializer, nil) | ||
| .with( | ||
| \.accessorBlock, | ||
| AccessorBlockSyntax( | ||
| accessors: .getter(codeBlockSyntax) | ||
| ) | ||
| ) | ||
|
|
||
| let newBindingSpecifier = | ||
| syntax.bindingSpecifier | ||
| .with(\.tokenKind, .keyword(.var)) | ||
|
|
||
| return | ||
| syntax | ||
| .with(\.bindingSpecifier, newBindingSpecifier) | ||
| .with(\.bindings, PatternBindingListSyntax([newBinding])) | ||
| } | ||
| } | ||
163 changes: 163 additions & 0 deletions
163
Tests/SwiftRefactorTest/ConvertComputedPropertyToStoredTest.swift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,163 @@ | ||
| //===----------------------------------------------------------------------===// | ||
| // | ||
| // This source file is part of the Swift.org open source project | ||
| // | ||
| // Copyright (c) 2014 - 2024 Apple Inc. and the Swift project authors | ||
| // Licensed under Apache License v2.0 with Runtime Library Exception | ||
| // | ||
| // See https://swift.org/LICENSE.txt for license information | ||
| // See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors | ||
| // | ||
| //===----------------------------------------------------------------------===// | ||
|
|
||
| import SwiftRefactor | ||
| import SwiftSyntax | ||
| import SwiftSyntaxBuilder | ||
| import XCTest | ||
| import _SwiftSyntaxTestSupport | ||
|
|
||
| final class ConvertComputedPropertyToStoredTest: XCTestCase { | ||
| func testToStored() throws { | ||
| let baseline: DeclSyntax = """ | ||
| var defaultColor: Color { Color() /* some text */ } | ||
| """ | ||
|
|
||
| let expected: DeclSyntax = """ | ||
| let defaultColor: Color = Color() /* some text */ | ||
| """ | ||
|
|
||
| try assertRefactorConvert(baseline, expected: expected) | ||
| } | ||
|
|
||
| func testToStoredWithReturnStatement() throws { | ||
| let baseline: DeclSyntax = """ | ||
| var defaultColor: Color { | ||
| return Color() | ||
| } | ||
| """ | ||
|
|
||
| let expected: DeclSyntax = """ | ||
| let defaultColor: Color = Color() | ||
| """ | ||
|
|
||
| try assertRefactorConvert(baseline, expected: expected) | ||
| } | ||
|
|
||
| func testToStoredWithReturnStatementAndTrailingComment() throws { | ||
| let baseline: DeclSyntax = """ | ||
| var defaultColor: Color { | ||
| return Color() /* some text */ | ||
| } | ||
| """ | ||
|
|
||
| let expected: DeclSyntax = """ | ||
| let defaultColor: Color = Color() /* some text */ | ||
| """ | ||
|
|
||
| try assertRefactorConvert(baseline, expected: expected) | ||
| } | ||
|
|
||
| func testToStoredWithReturnStatementAndTrailingCommentOnNewLine() throws { | ||
| let baseline: DeclSyntax = """ | ||
| var defaultColor: Color { | ||
| return Color() | ||
| /* some text */ | ||
| } | ||
| """ | ||
|
|
||
| let expected: DeclSyntax = """ | ||
| let defaultColor: Color = Color() | ||
| /* some text */ | ||
| """ | ||
|
|
||
| try assertRefactorConvert(baseline, expected: expected) | ||
| } | ||
|
|
||
| func testToStoredWithMultipleStatementsInAccessor() throws { | ||
| let baseline: DeclSyntax = """ | ||
| var defaultColor: Color { | ||
| let color = Color() | ||
| return color | ||
| } | ||
| """ | ||
|
|
||
| let expected: DeclSyntax = """ | ||
| let defaultColor: Color = { | ||
| let color = Color() | ||
| return color | ||
| }() | ||
| """ | ||
|
|
||
| try assertRefactorConvert(baseline, expected: expected) | ||
| } | ||
|
|
||
| func testToStoredWithMultipleStatementsInAccessorAndTrailingCommentsOnNewLine() throws { | ||
| let baseline: DeclSyntax = """ | ||
| var defaultColor: Color { | ||
| let color = Color() | ||
| return color | ||
| // returns color | ||
| } | ||
| """ | ||
|
|
||
| let expected: DeclSyntax = """ | ||
| let defaultColor: Color = { | ||
| let color = Color() | ||
| return color | ||
| // returns color | ||
| }() | ||
| """ | ||
|
|
||
| try assertRefactorConvert(baseline, expected: expected) | ||
| } | ||
|
|
||
| func testToStoredWithMultipleStatementsInAccessorAndLeadingComments() throws { | ||
| let baseline: DeclSyntax = """ | ||
| var defaultColor: Color { // returns color | ||
| let color = Color() | ||
| return color | ||
| } | ||
| """ | ||
|
|
||
| let expected: DeclSyntax = """ | ||
| let defaultColor: Color = { // returns color | ||
| let color = Color() | ||
| return color | ||
| }() | ||
| """ | ||
|
|
||
| try assertRefactorConvert(baseline, expected: expected) | ||
| } | ||
|
|
||
| func testToStoreWithSeparatingComments() throws { | ||
| let baseline: DeclSyntax = """ | ||
| var x: Int { | ||
| return | ||
| /* One */ 1 | ||
| } | ||
| """ | ||
|
|
||
| let expected: DeclSyntax = """ | ||
| let x: Int = | ||
| /* One */ 1 | ||
| """ | ||
|
|
||
| try assertRefactorConvert(baseline, expected: expected) | ||
| } | ||
| } | ||
|
|
||
| fileprivate func assertRefactorConvert( | ||
| _ callDecl: DeclSyntax, | ||
| expected: DeclSyntax?, | ||
| file: StaticString = #filePath, | ||
| line: UInt = #line | ||
| ) throws { | ||
| try assertRefactor( | ||
| callDecl, | ||
| context: (), | ||
| provider: ConvertComputedPropertyToStored.self, | ||
| expected: expected, | ||
| file: file, | ||
| line: line | ||
| ) | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.