| 97 | } |
| 98 | |
| 99 | const FieldRef* Expression::field_ref() const { |
| 100 | if (auto parameter = this->parameter()) { |
| 101 | return ¶meter->ref; |
| 102 | } |
| 103 | return nullptr; |
| 104 | } |
| 105 | |
| 106 | const Expression::Call* Expression::call() const { |
| 107 | if (impl_ == nullptr) return nullptr; |