We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
BeginBorrowInst.endBorrows
1 parent 3ffd4fe commit 6aaf200Copy full SHA for 6aaf200
SwiftCompilerSources/Sources/SIL/Instruction.swift
@@ -880,13 +880,6 @@ extension BeginAccessInst : ScopedInstruction {
880
final public class BeginBorrowInst : SingleValueInstruction, UnaryInstruction, BorrowIntroducingInstruction {
881
public var borrowedValue: Value { operand.value }
882
883
- public typealias EndBorrowSequence = LazyMapSequence<LazyFilterSequence<LazyMapSequence<UseList, EndBorrowInst?>>,
884
- EndBorrowInst>
885
-
886
- public var endBorrows: EndBorrowSequence {
887
- uses.lazy.compactMap({ $0.instruction as? EndBorrowInst })
888
- }
889
890
public var isLexical: Bool { bridged.BeginBorrow_isLexical() }
891
public var hasPointerEscape: Bool { bridged.BeginBorrow_hasPointerEscape() }
892
}
0 commit comments