summaryrefslogtreecommitdiff
path: root/gdb/ada-exp.h
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2021-03-08 07:27:57 -0700
committerTom Tromey <tom@tromey.com>2021-03-08 07:28:25 -0700
commit42fecb6183f4cce4e85473b8c43d90ec0ea562e7 (patch)
tree13c67a36281440d28aeb76162c7ffd57d9855505 /gdb/ada-exp.h
parent03070ee9c77877655051c073cf060585f7cb2ff2 (diff)
downloadbinutils-gdb-42fecb6183f4cce4e85473b8c43d90ec0ea562e7.tar.gz
Introduce ada_string_operation
This adds class ada_string_operation, which implements string constants for Ada. gdb/ChangeLog 2021-03-08 Tom Tromey <tom@tromey.com> * ada-lang.c (ada_string_operation::evaluate): New method. * ada-exp.h (class ada_string_operation): New.
Diffstat (limited to 'gdb/ada-exp.h')
-rw-r--r--gdb/ada-exp.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/gdb/ada-exp.h b/gdb/ada-exp.h
index 3f780dc9ff4..88ed0c53b46 100644
--- a/gdb/ada-exp.h
+++ b/gdb/ada-exp.h
@@ -42,6 +42,19 @@ public:
{ return std::get<0> (m_storage)->opcode (); }
};
+/* An Ada string constant. */
+class ada_string_operation
+ : public string_operation
+{
+public:
+
+ using string_operation::string_operation;
+
+ value *evaluate (struct type *expect_type,
+ struct expression *exp,
+ enum noside noside) override;
+};
+
} /* namespace expr */
#endif /* ADA_EXP_H */