| 1574 | } |
| 1575 | |
| 1576 | bool Expression::is_dynamic() const { |
| 1577 | if (val_fn_) { |
| 1578 | return true; |
| 1579 | } else { |
| 1580 | return false; |
| 1581 | } |
| 1582 | } |
| 1583 | |
| 1584 | Expression Expression::operator+(const Expression &other_expr) const { |
| 1585 | if (is_dynamic() && other_expr.is_dynamic()) { |