mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Feature - Calc
- Gave the calc command access to DOM resolution. Needs a Lexer change to recognize DOM addresses.
This commit is contained in:
parent
9c41610f56
commit
02116a9a93
4 changed files with 51 additions and 8 deletions
|
@ -126,6 +126,7 @@ int main (int argc, const char** argv)
|
|||
a3t.entity ("operator", ">=");
|
||||
a3t.entity ("operator", "!~");
|
||||
a3t.entity ("operator", "!=");
|
||||
a3t.entity ("operator", "==");
|
||||
a3t.entity ("operator", "=");
|
||||
a3t.entity ("operator", ">");
|
||||
a3t.entity ("operator", "~");
|
||||
|
@ -140,6 +141,9 @@ int main (int argc, const char** argv)
|
|||
a3t.entity ("operator", "<");
|
||||
a3t.entity ("operator", "(");
|
||||
a3t.entity ("operator", ")");
|
||||
a3t.entity ("operator", "%");
|
||||
a3t.entity ("operator", "^");
|
||||
a3t.entity ("operator", "!");
|
||||
|
||||
Tree* tree = a3t.parse ();
|
||||
if (tree)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue