nspace_dump.c 926 B

123456789101112131415161718192021222324252627282930313233
  1. #ifdef DEBUG
  2. /*
  3. * nspace_dump.c
  4. */
  5. #include "private.h"
  6. #include "lub/dump.h"
  7. /*--------------------------------------------------------- */
  8. void clish_nspace_dump(const clish_nspace_t * this)
  9. {
  10. lub_dump_printf("nspace(%p)\n", this);
  11. lub_dump_indent();
  12. lub_dump_printf("view : %s\n",
  13. clish_view__get_name(this->view));
  14. lub_dump_printf("prefix : %s\n",
  15. this->prefix ? this->prefix : "(null)");
  16. lub_dump_printf("access : %s\n",
  17. this->access ? this->access : "(null)");
  18. lub_dump_printf("help : %s\n", this->help ? "true" : "false");
  19. lub_dump_printf("completion : %s\n",
  20. this->completion ? "true" : "false");
  21. lub_dump_printf("context_help : %s\n",
  22. this->context_help ? "true" : "false");
  23. lub_dump_printf("inherit : %s\n",
  24. this->inherit ? "true" : "false");
  25. lub_dump_undent();
  26. }
  27. /*--------------------------------------------------------- */
  28. #endif /* DEBUG */