Feature - Calc

- Gave the calc command access to DOM resolution.  Needs a Lexer change to
  recognize DOM addresses.
This commit is contained in:
Paul Beckingham 2014-01-07 23:32:12 -05:00
parent 9c41610f56
commit 02116a9a93
4 changed files with 51 additions and 8 deletions

View file

@ -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)