Annotation Bug

- Fixed DOM lookup of special-case attributes: id and urgency are
  not stored in the usual manner, and must be handled differently.
- Removed the responsibility of DOM to evaluate literals, because
  they are handled more effectively in A3::tokenize.
- Fixed old code that assumed ".id" instead of "id".
- Removed unnecessary diag call from annotate.t.
This commit is contained in:
Paul Beckingham
2011-07-31 12:11:36 -04:00
parent 1884223a2e
commit e61e08c2ca
3 changed files with 11 additions and 70 deletions

View File

@@ -43,9 +43,6 @@ public:
const std::string get (const std::string&, const Task&);
void set (const std::string&, const std::string&);
private:
bool is_literal (std::string&);
private:
std::map <std::string, std::string> _cache;
};