Add support for the wild compare operators ==? and !=?

This commit is contained in:
Cary R
2017-11-17 19:32:50 -08:00
parent d23b046203
commit 3fc9ad2db0
28 changed files with 465 additions and 51 deletions
+2
View File
@@ -1260,6 +1260,8 @@ const char *human_readable_op(const char op, bool unary)
if (unary) type = "~|"; // NOR
else type = "!=="; // Case inequality
break;
case 'w': type = "==?"; break; // Wild equality
case 'W': type = "!=?"; break; // Wild inequality
case 'l': type = "<<(<)"; break; // Left shifts
case 'r': type = ">>"; break; // Logical right shift