Expand use of IndexBase (#2436)

Initially I'd added this to lexer, this includes parser and semantics. Also adds ComparableIndexBase to unify a few common cases where <> comparisons are supported.

Co-authored-by: Richard Smith <richard@metafoo.co.uk>
This commit is contained in:
Jon Ross-Perkins
2022-12-01 14:09:18 -08:00
committed by GitHub
co-authored by Richard Smith
parent 94cf343b05
commit d50fef1736
9 changed files with 125 additions and 254 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ void SemanticsNode::Print(llvm::raw_ostream& out) const {
#include "toolchain/semantics/semantics_node_kind.def"
}
out << ")";
if (type_.id != -1) {
if (type_.index != -1) {
out << ": " << type_;
}
}