| 138 | } |
| 139 | |
| 140 | absl::string_view ExpressionContainer::FindAlias( |
| 141 | absl::string_view alias) const { |
| 142 | auto it = aliases_.find(alias); |
| 143 | if (it != aliases_.end()) { |
| 144 | return it->second; |
| 145 | } |
| 146 | return ""; |
| 147 | } |
| 148 | |
| 149 | std::vector<std::string> ExpressionContainer::ListAbbreviations() const { |
| 150 | std::vector<std::string> res; |