+2021-03-08 Tom Tromey <tom@tromey.com>
+
+ * eval.c (eval_op_objc_selector): No longer static.
+ * c-exp.h (class objc_selector_operation): New.
+
2021-03-08 Tom Tromey <tom@tromey.com>
* eval.c: Include c-exp.h.
#include "expop.h"
#include "objc-lang.h"
+extern struct value *eval_op_objc_selector (struct type *expect_type,
+ struct expression *exp,
+ enum noside noside,
+ const char *sel);
namespace expr
{
{ return OP_OBJC_NSSTRING; }
};
+class objc_selector_operation
+ : public tuple_holding_operation<std::string>
+{
+public:
+
+ using tuple_holding_operation::tuple_holding_operation;
+
+ value *evaluate (struct type *expect_type,
+ struct expression *exp,
+ enum noside noside) override
+ {
+ if (noside == EVAL_SKIP)
+ return eval_skip_value (exp);
+ return eval_op_objc_selector (expect_type, exp, noside,
+ std::get<0> (m_storage).c_str ());
+ }
+
+ enum exp_opcode opcode () const override
+ { return OP_OBJC_SELECTOR; }
+};
+
}/* namespace expr */
#endif /* C_EXP_H */
/* Helper function that implements the body of OP_OBJC_SELECTOR. */
-static struct value *
+struct value *
eval_op_objc_selector (struct type *expect_type, struct expression *exp,
enum noside noside,
const char *sel)