feat(library/pp_options): add get_pp_purify_locals_name
This commit is contained in:
parent
05e1fc21f6
commit
f344dd75c4
2 changed files with 2 additions and 0 deletions
|
@ -154,6 +154,7 @@ name const & get_pp_universes_option_name() { return *g_pp_universes; }
|
|||
name const & get_pp_notation_option_name() { return *g_pp_notation; }
|
||||
name const & get_pp_metavar_args_name() { return *g_pp_metavar_args; }
|
||||
name const & get_pp_purify_metavars_name() { return *g_pp_purify_metavars; }
|
||||
name const & get_pp_purify_locals_name() { return *g_pp_purify_locals; }
|
||||
|
||||
unsigned get_pp_max_depth(options const & opts) { return opts.get_unsigned(*g_pp_max_depth, LEAN_DEFAULT_PP_MAX_DEPTH); }
|
||||
unsigned get_pp_max_steps(options const & opts) { return opts.get_unsigned(*g_pp_max_steps, LEAN_DEFAULT_PP_MAX_STEPS); }
|
||||
|
|
|
@ -14,6 +14,7 @@ name const & get_pp_universes_option_name();
|
|||
name const & get_pp_notation_option_name();
|
||||
name const & get_pp_metavar_args_name();
|
||||
name const & get_pp_purify_metavars_name();
|
||||
name const & get_pp_purify_locals_name();
|
||||
|
||||
unsigned get_pp_max_depth(options const & opts);
|
||||
unsigned get_pp_max_steps(options const & opts);
|
||||
|
|
Loading…
Reference in a new issue