Skip to content

Commit be2e588

Browse files
committed
Format.
1 parent 252d3be commit be2e588

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Sources/SwiftLexicalLookup/ScopeImplementations.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ import SwiftSyntax
320320
) -> [LookupResult] {
321321
guard body.position > origin.position || body.endPosition < origin.position
322322
else { return [] }
323-
323+
324324
let names = conditions.flatMap { element in
325325
LookupName.getNames(from: element.condition, accessibleAfter: element.endPosition)
326326
}.filter { introducedName in

Sources/SwiftLexicalLookup/SequentialScopeSyntax.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ extension SequentialScopeSyntax {
6565

6666
for codeBlockItem in itemsWithoutNamedDecl {
6767
guard codeBlockItem.position < origin.position else { break }
68-
68+
6969
if let introducingToParentScope = Syntax(codeBlockItem.item).asProtocol(SyntaxProtocol.self)
7070
as? IntroducingToSequentialParentScopeSyntax
7171
{

0 commit comments

Comments
 (0)