* Change the right-hand side of the ‘.’ operator from an attribute to
an attribute path. This is a refactoring to support default values.
This commit is contained in:
@@ -43,7 +43,7 @@ void ExprVar::show(std::ostream & str)
|
||||
|
||||
void ExprSelect::show(std::ostream & str)
|
||||
{
|
||||
str << "(" << *e << ")." << name;
|
||||
str << "(" << *e << ")." << showAttrPath(attrPath);
|
||||
}
|
||||
|
||||
void ExprOpHasAttr::show(std::ostream & str)
|
||||
|
||||
Reference in New Issue
Block a user