You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
404 B

  1. namespace Globals {
  2. char* bin_path = nullptr;
  3. Log_Level log_level = Log_Level::Debug;
  4. Array_List<void*> load_path;
  5. namespace Current_Execution {
  6. Array_List<Lisp_Object*> call_stack;
  7. Array_List<Environment*> envi_stack;
  8. }
  9. Error* error = nullptr;
  10. #ifdef _DONT_BREAK_ON_ERRORS
  11. bool breaking_on_errors = false;
  12. #else
  13. bool breaking_on_errors = true;
  14. #endif
  15. }