-/*-----------------------------------------.
-| Set the TYPE_NAME associated to SYMBOL. |
-`-----------------------------------------*/
+/*------------------------------------------------------------------.
+| Set the TYPE_NAME associated to SYMBOL. Does nothing if passed 0 |
+| as TYPE_NAME. |
+`------------------------------------------------------------------*/
+
+void
+symbol_type_set (symbol_t *symbol, struniq_t type_name, location_t location)
+{
+ if (type_name)
+ {
+ if (symbol->type_name)
+ complain_at (location,
+ _("type redeclaration for %s"), symbol->tag);
+ struniq_assert (type_name);
+ symbol->type_name = type_name;
+ }
+}
+
+
+/*-------------------------------------------------------------------.
+| Set the DESTRUCTOR associated to SYMBOL. Do nothing if passed 0. |
+`-------------------------------------------------------------------*/
+
+void
+symbol_destructor_set (symbol_t *symbol, char *destructor, location_t location)
+{
+ if (destructor)
+ {
+ if (symbol->destructor)
+ complain_at (location,
+ _("%s redeclaration for %s"),
+ "%destructor", symbol->tag);
+ symbol->destructor = destructor;
+ symbol->destructor_location = location;
+ }
+}
+
+
+/*----------------------------------------------------------------.
+| Set the PRINTER associated to SYMBOL. Do nothing if passed 0. |
+`----------------------------------------------------------------*/