[AST] Add OperatorFixity

Use this instead of DeclKind in a few places.
This commit is contained in:
Hamish Knight
2020-03-22 14:16:52 -07:00
parent e5952ab7fe
commit a502246f34
10 changed files with 60 additions and 22 deletions

View File

@@ -1085,7 +1085,7 @@ SerializedASTFile::lookupNestedType(Identifier name,
}
OperatorDecl *SerializedASTFile::lookupOperator(Identifier name,
DeclKind fixity) const {
OperatorFixity fixity) const {
return File.lookupOperator(name, fixity);
}