Use symbols for logical operations

This commit is contained in:
2025-03-17 23:29:38 +01:00
parent f6e0ead4fb
commit 6eb4e91b2c
2 changed files with 21 additions and 21 deletions

View File

@ -107,16 +107,16 @@ false {
nil {
return yy::parser::make_NIL(this->location);
}
and {
\& {
return yy::parser::make_AND(this->location);
}
xor {
return yy::parser::make_XOR(this->location);
}
or {
\| {
return yy::parser::make_OR(this->location);
}
not {
\~ {
return yy::parser::make_NOT(this->location);
}
return {