mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-20 04:13:07 +02:00
Lexer
- Now recognized the exact inequality operator !==.
This commit is contained in:
parent
9318dced5a
commit
a2936c045c
1 changed files with 2 additions and 1 deletions
|
@ -716,7 +716,8 @@ bool Lexer::is_ident (int c) const
|
|||
bool Lexer::is_triple_op (int c0, int c1, int c2) const
|
||||
{
|
||||
return (c0 == 'a' && c1 == 'n' && c2 == 'd') ||
|
||||
(c0 == 'x' && c1 == 'o' && c2 == 'r');
|
||||
(c0 == 'x' && c1 == 'o' && c2 == 'r') ||
|
||||
(c0 == '!' && c1 == '=' && c2 == '=');
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue