| 104 | } |
| 105 | |
| 106 | const Expression::Call* Expression::call() const { |
| 107 | if (impl_ == nullptr) return nullptr; |
| 108 | |
| 109 | return std::get_if<Call>(impl_.get()); |
| 110 | } |
| 111 | |
| 112 | const DataType* Expression::type() const { |
| 113 | if (impl_ == nullptr) return nullptr; |