mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Entities
- Added parser support for @entities, by merely allowing them to exist as terminals. - Added sample entities. - Extended grammar to test entities.
This commit is contained in:
parent
60336d6f6a
commit
ef4d318276
3 changed files with 15 additions and 9 deletions
|
@ -191,7 +191,8 @@ void Parser::checkConsistency ()
|
|||
// Undefined value - these are definitions that appear in token, but are
|
||||
// not in _rules.
|
||||
for (unsigned int i = 0; i < notDefined.size (); ++i)
|
||||
throw std::string ("definition '") + notDefined[i] + "' referenced, but not defined.";
|
||||
if (notDefined[i][0] != '@')
|
||||
throw std::string ("definition '") + notDefined[i] + "' referenced, but not defined.";
|
||||
|
||||
// Circular definitions - these are names in _rules that also appear as
|
||||
// token 0 in any of the alternates for that definition.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue