mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
CLI2: Unrecognized Lexer::Type::pair args are now downgraded to Lexer::Type::word
This commit is contained in:
parent
de93c63535
commit
183550a190
1 changed files with 19 additions and 6 deletions
25
src/CLI2.cpp
25
src/CLI2.cpp
|
@ -965,8 +965,15 @@ void CLI2::desugarFilterAttributes ()
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (! canonicalize (canonical, "attribute", name))
|
// If the name does not canonicalize to either an attribute or a UDA
|
||||||
canonicalize (canonical, "uda", name);
|
// then it is not a recognized Lexer::Type::pair, so downgrade it to
|
||||||
|
// Lexer::Type::word.
|
||||||
|
if (! canonicalize (canonical, "attribute", name) &&
|
||||||
|
! canonicalize (canonical, "uda", name))
|
||||||
|
{
|
||||||
|
a._lextype = Lexer::Type::word;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
// TODO The "!" modifier is being dropped.
|
// TODO The "!" modifier is being dropped.
|
||||||
|
|
||||||
|
@ -1581,17 +1588,23 @@ void CLI2::decomposeModAttributes ()
|
||||||
std::string name = raw.substr (0, separator);
|
std::string name = raw.substr (0, separator);
|
||||||
std::string value = raw.substr (separator + 1);
|
std::string value = raw.substr (separator + 1);
|
||||||
|
|
||||||
a.attribute ("name", name);
|
|
||||||
a.attribute ("value", value);
|
|
||||||
|
|
||||||
std::string canonical;
|
std::string canonical;
|
||||||
if (canonicalize (canonical, "attribute", name) ||
|
if (canonicalize (canonical, "attribute", name) ||
|
||||||
canonicalize (canonical, "uda", name))
|
canonicalize (canonical, "uda", name))
|
||||||
{
|
{
|
||||||
a.attribute ("canonical", canonical);
|
a.attribute ("canonical", canonical);
|
||||||
|
a.attribute ("name", name);
|
||||||
|
a.attribute ("value", value);
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO Good place to complain about unrecognized attributes?
|
// If the name does not canonicalize to either an attribute or a UDA
|
||||||
|
// then it is not a recognized Lexer::Type::pair, so downgrade it to
|
||||||
|
// Lexer::Type::word.
|
||||||
|
else
|
||||||
|
{
|
||||||
|
a._lextype = Lexer::Type::word;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue