725f5ba0a0
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
16 lines
550 B
C++
16 lines
550 B
C++
/*
|
|
Copyright (c) 2014 Microsoft Corporation. All rights reserved.
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
Author: Leonardo de Moura
|
|
*/
|
|
#pragma once
|
|
#include "kernel/environment.h"
|
|
#include "frontends/lean/cmd_table.h"
|
|
|
|
namespace lean {
|
|
environment add_begin_end_pre_tactic(environment const & env, expr const & pre_tac);
|
|
environment reset_begin_end_pre_tactic(environment const & env, expr const & pre_tac);
|
|
optional<expr> get_begin_end_pre_tactic(environment const & env);
|
|
void register_begin_end_cmds(cmd_table & r);
|
|
}
|