Remove unused declaration

This commit is contained in:
Marcelo Fabri 2022-11-06 19:15:15 -08:00
parent 4ec35845ad
commit ecc30764d8
1 changed files with 0 additions and 9 deletions

View File

@ -167,15 +167,6 @@ private typealias PredicateDescription = (to: String, toNot: String?, arity: Ari
private enum Arity {
case nullary(analogueValue: ExprSyntaxProtocol)
case withArguments
var hasArguments: Bool {
switch self {
case .nullary:
return false
case .withArguments:
return true
}
}
}
private struct Expectation {