Add escape code for ESC \e

This commit is contained in:
gingerBill
2018-06-15 23:13:26 +01:00
parent ba776a3c9f
commit 6d1c32eb77
3 changed files with 143 additions and 146 deletions
-4
View File
@@ -407,10 +407,6 @@ ExactValue exact_unary_operator_value(TokenKind op, ExactValue v, i32 precision,
if (is_unsigned) {
i = i & unsigned_integer_maxs[precision/8];
}
// if (0 < precision && precision < 64) {
// i = i & ~(-1ll << precision);
// }
return exact_value_i64(i);
}