passed local tests
This commit is contained in:
@ -84,6 +84,9 @@ inline bool operator==(const ExprTypeInfo &l, const ExprTypeInfo &r) {
|
||||
return true;
|
||||
}
|
||||
if (std::holds_alternative<IdentifierType>(l)) {
|
||||
bool x = std::holds_alternative<IdentifierType>(r);
|
||||
std::string a = std::get<IdentifierType>(l);
|
||||
std::string b = std::get<IdentifierType>(r);
|
||||
return std::holds_alternative<IdentifierType>(r) && std::get<IdentifierType>(l) == std::get<IdentifierType>(r);
|
||||
}
|
||||
if (std::holds_alternative<ArrayType>(l)) {
|
||||
|
Reference in New Issue
Block a user