1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2019 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 SwiftSyntax
struct SyntaxAncestorIterator: IteratorProtocol {
private var node: Syntax
fileprivate init(_ node: Syntax) {
self.node = node
}
mutating func next() -> Syntax? {
if let parent = node.parent {
node = parent
return node
}
return nil
}
}
struct SyntaxAncestors: Sequence {
private let node: Syntax
fileprivate init(_ node: Syntax) {
self.node = node
}
func makeIterator() -> SyntaxAncestorIterator {
return SyntaxAncestorIterator(node)
}
}
extension SyntaxProtocol {
var ancestors: SyntaxAncestors {
return SyntaxAncestors(Syntax(self))
}
}
extension TokenSyntax {
var isOperator: Bool {
switch tokenKind {
case .prefixOperator, .postfixOperator, .binaryOperator, .equal:
return true
default:
return false
}
}
var pieces: (leadingTrivia: String, content: String, trailingTrivia: String) {
let text = description.utf8
let leadingTrivia = String(text.prefix(leadingTriviaLength.utf8Length))!
let content = String(text.dropFirst(leadingTriviaLength.utf8Length).dropLast(trailingTriviaLength.utf8Length))!
let trailingTrivia = String(text.suffix(trailingTriviaLength.utf8Length))!
return (leadingTrivia, content, trailingTrivia)
}
var isIdentifier: Bool {
switch tokenKind {
case .identifier: fallthrough
case .dollarIdentifier:
return true
default:
return false
}
}
var isReference: Bool {
guard isIdentifier else { return false }
guard let parent = parent else { return false }
return parent.isProtocol(ExprSyntaxProtocol.self) ||
parent.isProtocol(TypeSyntaxProtocol.self) ||
parent.is(LabeledExprSyntax.self) ||
parent.is(KeyPathPropertyComponentSyntax.self)
}
var textWithoutBackticks: String {
guard text.first == "`" && text.last == "`" else { return text }
return String(text.dropFirst().dropLast())
}
var isLiteralExprClose: Bool {
guard let parent = parent else {
return false
}
switch self.tokenKind {
case .rightParen:
return parent.is(TupleExprSyntax.self)
case .rightBrace:
return parent.is(ClosureExprSyntax.self)
case .rightSquare:
return parent.is(ArrayExprSyntax.self) || parent.is(DictionaryExprSyntax.self)
default:
return false
}
}
}
|