@@ -55,6 +55,22 @@ class ada_string_operation
enum noside noside) override;
};
+/* The Ada TYPE'(EXP) construct. */
+class ada_qual_operation
+ : public tuple_holding_operation<operation_up, struct type *>
+{
+public:
+
+ using tuple_holding_operation::tuple_holding_operation;
+
+ value *evaluate (struct type *expect_type,
+ struct expression *exp,
+ enum noside noside) override;
+
+ enum exp_opcode opcode () const override
+ { return UNOP_QUAL; }
+};
+
} /* namespace expr */
#endif /* ADA_EXP_H */
@@ -10602,6 +10602,15 @@ ada_string_operation::evaluate (struct type *expect_type,
return result;
}
+value *
+ada_qual_operation::evaluate (struct type *expect_type,
+ struct expression *exp,
+ enum noside noside)
+{
+ struct type *type = std::get<1> (m_storage);
+ return std::get<0> (m_storage)->evaluate (type, exp, noside);
+}
+
}
/* Implement the evaluate_exp routine in the exp_descriptor structure