Displaying 1 result from an estimated 1 matches for "print_left".
2017 Jun 21
6
RFC: Cleaning up the Itanium demangler
...bool is_name_type() const { return meta.is_name_type; }
+
+ void is_objcproto_name(bool value) { meta.is_objcproto_name = value; }
+ bool is_objcproto_name() { return meta.is_objcproto_name; }
+
+ node_meta get_meta() const { return meta; }
+
+ void print(stream& s) const {
+ print_left(s);
+ if (has_rhs_component())
+ print_right(s);
+ }
+ virtual void print_left(stream& s) const = 0;
+ virtual void print_right(stream&) const {}
+
+ virtual string_ref get_base_name() const { return string_ref(); }
+
+ // Silence compiler warnings, this dto...