compiler: error message for custom operations

Emit error messages for custom comparison and inclusion test,
instead of compiler crashing.
pull/1530/head
pca006132 2020-10-08 19:14:05 +08:00 committed by Sébastien Bourdeauducq
parent db62cf2abe
commit e9988f9d3b
1 changed files with 14 additions and 2 deletions

View File

@ -1914,7 +1914,13 @@ class ARTIQIRGenerator(algorithm.Visitor):
return result
else:
assert False
loc = lhs.loc
loc.end = rhs.loc.end
diag = diagnostic.Diagnostic("error",
"Custom object comparison is not supported",
{},
loc)
self.engine.process(diag)
def polymorphic_compare_pair_inclusion(self, needle, haystack):
if builtins.is_range(haystack.type):
@ -1958,7 +1964,13 @@ class ARTIQIRGenerator(algorithm.Visitor):
result = phi
else:
assert False
loc = needle.loc
loc.end = haystack.loc.end
diag = diagnostic.Diagnostic("error",
"Custom object inclusion test is not supported",
{},
loc)
self.engine.process(diag)
return result