- Standardized use of 'ATT' and 'ATTR' tags to 'ATTRIBUTE'.
This commit is contained in:
Paul Beckingham 2014-10-25 13:15:24 -04:00
parent b7efb753b5
commit 5daf673387

View file

@ -625,7 +625,7 @@ void CLI::desugarTags ()
tag.find (' ') == std::string::npos) tag.find (' ') == std::string::npos)
{ {
A left ("argTag", "tags"); A left ("argTag", "tags");
left.tag ("ATT"); left.tag ("ATTRIBUTE");
left.tag ("FILTER"); left.tag ("FILTER");
reconstructed.push_back (left); reconstructed.push_back (left);
@ -929,7 +929,7 @@ void CLI::desugarPatterns ()
pattern.length () > 0) pattern.length () > 0)
{ {
A lhs ("argPattern", "description"); A lhs ("argPattern", "description");
lhs.tag ("ATT"); lhs.tag ("ATTRIBUTE");
lhs.tag ("FILTER"); lhs.tag ("FILTER");
reconstructed.push_back (lhs); reconstructed.push_back (lhs);
@ -1071,7 +1071,7 @@ void CLI::desugarIDs ()
{ {
A id ("argSeq", "id"); A id ("argSeq", "id");
id.tag ("FILTER"); id.tag ("FILTER");
id.tag ("ATTR"); id.tag ("ATTRIBUTE");
reconstructed.push_back (id); reconstructed.push_back (id);
A equal ("argSeq", "=="); A equal ("argSeq", "==");
@ -1093,7 +1093,7 @@ void CLI::desugarIDs ()
A startId ("argSeq", "id"); A startId ("argSeq", "id");
startId.tag ("FILTER"); startId.tag ("FILTER");
startId.tag ("ATTR"); startId.tag ("ATTRIBUTE");
reconstructed.push_back (startId); reconstructed.push_back (startId);
A gte ("argSeq", ">="); A gte ("argSeq", ">=");
@ -1113,7 +1113,7 @@ void CLI::desugarIDs ()
A endId ("argSeq", "id"); A endId ("argSeq", "id");
endId.tag ("FILTER"); endId.tag ("FILTER");
endId.tag ("ATTR"); endId.tag ("ATTRIBUTE");
reconstructed.push_back (endId); reconstructed.push_back (endId);
A lte ("argSeq", "<="); A lte ("argSeq", "<=");
@ -1204,7 +1204,7 @@ void CLI::desugarUUIDs ()
A uuid ("argSeq", "uuid"); A uuid ("argSeq", "uuid");
uuid.tag ("FILTER"); uuid.tag ("FILTER");
uuid.tag ("ATTR"); uuid.tag ("ATTRIBUTE");
reconstructed.push_back (uuid); reconstructed.push_back (uuid);
A equal ("argSeq", "="); A equal ("argSeq", "=");