nspace_dump.c 842 B

12345678910111213141516171819202122232425262728293031
  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("help : %s\n", this->help ? "true" : "false");
  17. lub_dump_printf("completion : %s\n",
  18. this->completion ? "true" : "false");
  19. lub_dump_printf("context_help : %s\n",
  20. this->context_help ? "true" : "false");
  21. lub_dump_printf("inherit : %s\n",
  22. this->inherit ? "true" : "false");
  23. lub_dump_undent();
  24. }
  25. /*--------------------------------------------------------- */
  26. #endif /* DEBUG */