mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Integration - Context::parse
- Integrated Att parsing. - Unit tests are broken right now. - Stubbed Context::shadow. - Implemented Duration::valid. - Task is broken right now.
This commit is contained in:
parent
7a219c999e
commit
ed39b88719
7 changed files with 143 additions and 55 deletions
|
@ -119,6 +119,12 @@ bool Att::valid (const std::string& input) const
|
|||
// ^ |
|
||||
// |__________|
|
||||
//
|
||||
void Att::parse (const std::string& input)
|
||||
{
|
||||
Nibbler n (input);
|
||||
parse (n);
|
||||
}
|
||||
|
||||
void Att::parse (Nibbler& n)
|
||||
{
|
||||
// Ensure a clean object first.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue