2014-06-11 00:02:06 +00:00
|
|
|
/*
|
|
|
|
Copyright (c) 2014 Microsoft Corporation. All rights reserved.
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
|
|
|
Author: Leonardo de Moura
|
|
|
|
*/
|
2014-06-13 22:13:32 +00:00
|
|
|
#include <algorithm>
|
2014-06-13 18:24:26 +00:00
|
|
|
#include "util/sstream.h"
|
2014-06-17 00:27:43 +00:00
|
|
|
#include "util/sexpr/option_declarations.h"
|
2014-06-13 22:13:32 +00:00
|
|
|
#include "kernel/type_checker.h"
|
2014-06-26 17:05:00 +00:00
|
|
|
#include "kernel/abstract.h"
|
2014-07-10 13:07:41 +00:00
|
|
|
#include "kernel/instantiate.h"
|
2014-06-11 18:52:58 +00:00
|
|
|
#include "library/io_state_stream.h"
|
2014-06-13 18:24:26 +00:00
|
|
|
#include "library/scoped_ext.h"
|
|
|
|
#include "library/aliases.h"
|
2014-09-04 01:37:01 +00:00
|
|
|
#include "library/protected.h"
|
2014-06-13 22:13:32 +00:00
|
|
|
#include "library/locals.h"
|
2014-06-26 15:08:39 +00:00
|
|
|
#include "library/coercion.h"
|
2014-07-06 01:58:20 +00:00
|
|
|
#include "library/opaque_hints.h"
|
2014-06-18 17:36:21 +00:00
|
|
|
#include "frontends/lean/util.h"
|
2014-06-11 18:44:16 +00:00
|
|
|
#include "frontends/lean/parser.h"
|
2014-06-17 20:35:31 +00:00
|
|
|
#include "frontends/lean/calc.h"
|
2014-06-15 05:13:25 +00:00
|
|
|
#include "frontends/lean/notation_cmd.h"
|
2014-06-18 20:55:48 +00:00
|
|
|
#include "frontends/lean/inductive_cmd.h"
|
2014-07-29 02:04:57 +00:00
|
|
|
#include "frontends/lean/structure_cmd.h"
|
2014-08-21 17:36:44 +00:00
|
|
|
#include "frontends/lean/begin_end_ext.h"
|
2014-06-18 17:36:21 +00:00
|
|
|
#include "frontends/lean/decl_cmds.h"
|
2014-07-04 21:25:44 +00:00
|
|
|
#include "frontends/lean/class.h"
|
2014-07-08 21:28:33 +00:00
|
|
|
#include "frontends/lean/tactic_hint.h"
|
2014-06-11 00:02:06 +00:00
|
|
|
|
|
|
|
namespace lean {
|
2014-06-12 03:56:10 +00:00
|
|
|
static name g_raw("raw");
|
2014-06-17 00:27:43 +00:00
|
|
|
static name g_true("true");
|
|
|
|
static name g_false("false");
|
2014-06-17 00:31:28 +00:00
|
|
|
static name g_options("options");
|
2014-06-17 01:42:39 +00:00
|
|
|
static name g_lparen("(");
|
|
|
|
static name g_rparen(")");
|
|
|
|
static name g_arrow("->");
|
|
|
|
static name g_lbracket("[");
|
|
|
|
static name g_rbracket("]");
|
|
|
|
static name g_declarations("declarations");
|
|
|
|
static name g_decls("decls");
|
|
|
|
static name g_hiding("hiding");
|
2014-07-06 01:58:20 +00:00
|
|
|
static name g_exposing("exposing");
|
2014-06-17 01:42:39 +00:00
|
|
|
static name g_renaming("renaming");
|
2014-09-04 00:37:02 +00:00
|
|
|
static name g_as("as");
|
2014-06-26 15:08:39 +00:00
|
|
|
static name g_colon(":");
|
2014-06-13 22:13:32 +00:00
|
|
|
|
2014-09-19 19:30:36 +00:00
|
|
|
static name g_persistent("[persistent]");
|
|
|
|
|
2014-06-11 18:52:58 +00:00
|
|
|
environment print_cmd(parser & p) {
|
|
|
|
if (p.curr() == scanner::token_kind::String) {
|
2014-06-17 00:31:28 +00:00
|
|
|
p.regular_stream() << p.get_str_val() << endl;
|
2014-06-11 18:52:58 +00:00
|
|
|
p.next();
|
2014-06-17 00:31:28 +00:00
|
|
|
} else if (p.curr_is_token_or_id(g_raw)) {
|
2014-06-12 03:56:10 +00:00
|
|
|
p.next();
|
|
|
|
expr e = p.parse_expr();
|
2014-06-17 00:31:28 +00:00
|
|
|
p.regular_stream() << e << endl;
|
|
|
|
} else if (p.curr_is_token_or_id(g_options)) {
|
|
|
|
p.next();
|
|
|
|
p.regular_stream() << p.ios().get_options() << endl;
|
2014-06-11 18:52:58 +00:00
|
|
|
} else {
|
|
|
|
throw parser_error("invalid print command", p.pos());
|
|
|
|
}
|
|
|
|
return p.env();
|
|
|
|
}
|
|
|
|
|
2014-06-13 18:24:26 +00:00
|
|
|
environment section_cmd(parser & p) {
|
2014-08-07 23:59:08 +00:00
|
|
|
name n;
|
|
|
|
if (p.curr_is_identifier())
|
|
|
|
n = p.check_atomic_id_next("invalid section, atomic identifier expected");
|
2014-06-13 18:24:26 +00:00
|
|
|
p.push_local_scope();
|
2014-08-23 22:44:28 +00:00
|
|
|
return push_scope(p.env(), p.ios(), scope_kind::Section, n);
|
|
|
|
}
|
|
|
|
|
|
|
|
environment context_cmd(parser & p) {
|
|
|
|
name n;
|
|
|
|
if (p.curr_is_identifier())
|
|
|
|
n = p.check_atomic_id_next("invalid context, atomic identifier expected");
|
2014-09-09 18:02:01 +00:00
|
|
|
bool save_options = true;
|
|
|
|
p.push_local_scope(save_options);
|
2014-08-23 22:44:28 +00:00
|
|
|
return push_scope(p.env(), p.ios(), scope_kind::Context, n);
|
2014-06-13 18:24:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
environment namespace_cmd(parser & p) {
|
2014-07-08 02:15:46 +00:00
|
|
|
auto pos = p.pos();
|
|
|
|
name n = p.check_atomic_id_next("invalid namespace declaration, atomic identifier expected");
|
|
|
|
if (is_root_namespace(n))
|
|
|
|
throw parser_error(sstream() << "invalid namespace name, '" << n << "' is reserved", pos);
|
2014-08-23 22:44:28 +00:00
|
|
|
return push_scope(p.env(), p.ios(), scope_kind::Namespace, n);
|
2014-06-13 18:24:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
environment end_scoped_cmd(parser & p) {
|
2014-08-23 22:44:28 +00:00
|
|
|
if (in_section_or_context(p.env()))
|
2014-06-13 18:24:26 +00:00
|
|
|
p.pop_local_scope();
|
2014-08-07 23:59:08 +00:00
|
|
|
if (p.curr_is_identifier()) {
|
|
|
|
name n = p.check_atomic_id_next("invalid end of scope, atomic identifier expected");
|
|
|
|
return pop_scope(p.env(), n);
|
|
|
|
} else {
|
|
|
|
return pop_scope(p.env());
|
|
|
|
}
|
2014-06-13 18:24:26 +00:00
|
|
|
}
|
|
|
|
|
2014-06-13 22:13:32 +00:00
|
|
|
environment check_cmd(parser & p) {
|
|
|
|
expr e = p.parse_expr();
|
2014-07-14 04:04:01 +00:00
|
|
|
list<expr> ctx = locals_to_context(e, p);
|
2014-06-13 22:13:32 +00:00
|
|
|
level_param_names ls = to_level_param_names(collect_univ_params(e));
|
2014-07-06 23:46:34 +00:00
|
|
|
level_param_names new_ls;
|
2014-07-14 04:04:01 +00:00
|
|
|
std::tie(e, new_ls) = p.elaborate_relaxed(e, ctx);
|
2014-07-27 19:01:06 +00:00
|
|
|
auto tc = mk_type_checker_with_hints(p.env(), p.mk_ngen(), true);
|
2014-08-20 05:31:26 +00:00
|
|
|
expr type = tc->check(e, append(ls, new_ls)).first;
|
2014-07-10 17:32:00 +00:00
|
|
|
auto reg = p.regular_stream();
|
|
|
|
formatter const & fmt = reg.get_formatter();
|
|
|
|
options opts = p.ios().get_options();
|
|
|
|
unsigned indent = get_pp_indent(opts);
|
2014-08-24 16:35:25 +00:00
|
|
|
format r = group(fmt(e) + space() + colon() + nest(indent, line() + fmt(type)));
|
2014-07-10 17:32:00 +00:00
|
|
|
reg << mk_pair(r, opts) << endl;
|
2014-06-13 22:13:32 +00:00
|
|
|
return p.env();
|
|
|
|
}
|
|
|
|
|
2014-06-16 20:00:35 +00:00
|
|
|
environment exit_cmd(parser &) {
|
|
|
|
throw interrupt_parser();
|
|
|
|
}
|
|
|
|
|
2014-06-17 00:27:43 +00:00
|
|
|
environment set_option_cmd(parser & p) {
|
|
|
|
auto id_pos = p.pos();
|
|
|
|
name id = p.check_id_next("invalid set option, identifier (i.e., option name) expected");
|
|
|
|
auto decl_it = get_option_declarations().find(id);
|
|
|
|
if (decl_it == get_option_declarations().end()) {
|
|
|
|
// add "lean" prefix
|
|
|
|
name lean_id = name("lean") + id;
|
|
|
|
decl_it = get_option_declarations().find(lean_id);
|
|
|
|
if (decl_it == get_option_declarations().end()) {
|
2014-09-19 19:30:36 +00:00
|
|
|
throw parser_error(sstream() << "unknown option '" << id
|
|
|
|
<< "', type 'help options.' for list of available options", id_pos);
|
2014-06-17 00:27:43 +00:00
|
|
|
} else {
|
|
|
|
id = lean_id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
option_kind k = decl_it->second.kind();
|
|
|
|
if (k == BoolOption) {
|
|
|
|
if (p.curr_is_token_or_id(g_true))
|
|
|
|
p.set_option(id, true);
|
|
|
|
else if (p.curr_is_token_or_id(g_false))
|
|
|
|
p.set_option(id, false);
|
|
|
|
else
|
|
|
|
throw parser_error("invalid Boolean option value, 'true' or 'false' expected", p.pos());
|
|
|
|
p.next();
|
|
|
|
} else if (k == StringOption) {
|
|
|
|
if (!p.curr_is_string())
|
|
|
|
throw parser_error("invalid option value, given option is not a string", p.pos());
|
|
|
|
p.set_option(id, p.get_str_val());
|
|
|
|
p.next();
|
|
|
|
} else if (k == DoubleOption) {
|
|
|
|
p.set_option(id, p.parse_double());
|
|
|
|
} else if (k == UnsignedOption || k == IntOption) {
|
|
|
|
p.set_option(id, p.parse_small_nat());
|
|
|
|
} else {
|
|
|
|
throw parser_error("invalid option value, 'true', 'false', string, integer or decimal value expected", p.pos());
|
|
|
|
}
|
|
|
|
p.updt_options();
|
|
|
|
return p.env();
|
|
|
|
}
|
|
|
|
|
2014-06-17 01:42:39 +00:00
|
|
|
static name parse_class(parser & p) {
|
|
|
|
if (p.curr_is_token(g_lbracket)) {
|
|
|
|
p.next();
|
|
|
|
name n;
|
|
|
|
if (p.curr_is_identifier())
|
|
|
|
n = p.get_name_val();
|
|
|
|
else if (p.curr_is_keyword() || p.curr_is_command())
|
|
|
|
n = p.get_token_info().value();
|
|
|
|
else
|
2014-09-03 23:00:38 +00:00
|
|
|
throw parser_error("invalid 'open' command, identifier or symbol expected", p.pos());
|
2014-06-17 01:42:39 +00:00
|
|
|
p.next();
|
2014-09-03 23:00:38 +00:00
|
|
|
p.check_token_next(g_rbracket, "invalid 'open' command, ']' expected");
|
2014-06-17 01:42:39 +00:00
|
|
|
return n;
|
|
|
|
} else {
|
|
|
|
return name();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void check_identifier(parser & p, environment const & env, name const & ns, name const & id) {
|
|
|
|
name full_id = ns + id;
|
|
|
|
if (!env.find(full_id))
|
2014-09-03 23:00:38 +00:00
|
|
|
throw parser_error(sstream() << "invalid 'open' command, unknown declaration '" << full_id << "'", p.pos());
|
2014-06-17 01:42:39 +00:00
|
|
|
}
|
|
|
|
|
2014-09-04 01:37:01 +00:00
|
|
|
// add id as an abbreviation for d
|
2014-09-04 16:30:25 +00:00
|
|
|
static environment add_abbrev(parser & p, environment const & env, name const & id, name const & d) {
|
2014-09-04 01:37:01 +00:00
|
|
|
declaration decl = env.get(d);
|
|
|
|
buffer<level> ls;
|
|
|
|
for (name const & l : decl.get_univ_params())
|
|
|
|
ls.push_back(mk_param_univ(l));
|
|
|
|
expr value = mk_constant(d, to_list(ls.begin(), ls.end()));
|
|
|
|
bool opaque = false;
|
|
|
|
name const & ns = get_namespace(env);
|
|
|
|
name full_id = ns + id;
|
2014-09-04 16:30:25 +00:00
|
|
|
p.add_abbrev_index(full_id, d);
|
2014-09-04 01:37:01 +00:00
|
|
|
environment new_env = module::add(env, check(env, mk_definition(env, full_id, decl.get_univ_params(), decl.get_type(), value, opaque)));
|
|
|
|
if (full_id != id)
|
|
|
|
new_env = add_expr_alias_rec(new_env, id, full_id);
|
|
|
|
return new_env;
|
|
|
|
}
|
|
|
|
|
|
|
|
// open/export [class] id (as id)? (id ...) (renaming id->id id->id) (hiding id ... id)
|
|
|
|
environment open_export_cmd(parser & p, bool open) {
|
2014-06-17 01:42:39 +00:00
|
|
|
environment env = p.env();
|
2014-07-07 21:53:06 +00:00
|
|
|
while (true) {
|
|
|
|
name cls = parse_class(p);
|
|
|
|
bool decls = cls.is_anonymous() || cls == g_decls || cls == g_declarations;
|
2014-07-08 01:17:10 +00:00
|
|
|
auto pos = p.pos();
|
2014-09-04 01:37:01 +00:00
|
|
|
name ns = p.check_id_next("invalid 'open/export' command, identifier expected");
|
2014-07-08 01:17:10 +00:00
|
|
|
optional<name> real_ns = to_valid_namespace_name(env, ns);
|
|
|
|
if (!real_ns)
|
|
|
|
throw parser_error(sstream() << "invalid namespace name '" << ns << "'", pos);
|
|
|
|
ns = *real_ns;
|
2014-09-04 00:37:02 +00:00
|
|
|
name as;
|
|
|
|
if (p.curr_is_token_or_id(g_as)) {
|
|
|
|
p.next();
|
2014-09-04 01:37:01 +00:00
|
|
|
as = p.check_id_next("invalid 'open/export' command, identifier expected");
|
2014-09-04 00:37:02 +00:00
|
|
|
}
|
2014-09-04 01:37:01 +00:00
|
|
|
if (open)
|
|
|
|
env = using_namespace(env, p.ios(), ns, cls);
|
|
|
|
else
|
|
|
|
env = export_namespace(env, p.ios(), ns, cls);
|
2014-07-07 21:53:06 +00:00
|
|
|
if (decls) {
|
|
|
|
// Remark: we currently to not allow renaming and hiding of universe levels
|
|
|
|
buffer<name> exceptions;
|
|
|
|
bool found_explicit = false;
|
|
|
|
while (p.curr_is_token(g_lparen)) {
|
2014-06-17 01:42:39 +00:00
|
|
|
p.next();
|
2014-07-07 21:53:06 +00:00
|
|
|
if (p.curr_is_token_or_id(g_renaming)) {
|
2014-06-17 01:42:39 +00:00
|
|
|
p.next();
|
2014-07-07 21:53:06 +00:00
|
|
|
while (p.curr_is_identifier()) {
|
|
|
|
name from_id = p.get_name_val();
|
|
|
|
p.next();
|
2014-09-04 01:37:01 +00:00
|
|
|
p.check_token_next(g_arrow, "invalid 'open/export' command renaming, '->' expected");
|
|
|
|
name to_id = p.check_id_next("invalid 'open/export' command renaming, identifier expected");
|
2014-07-07 21:53:06 +00:00
|
|
|
check_identifier(p, env, ns, from_id);
|
|
|
|
exceptions.push_back(from_id);
|
2014-09-04 01:37:01 +00:00
|
|
|
if (open)
|
|
|
|
env = add_expr_alias(env, as+to_id, ns+from_id);
|
|
|
|
else
|
2014-09-04 16:30:25 +00:00
|
|
|
env = add_abbrev(p, env, as+to_id, ns+from_id);
|
2014-07-07 21:53:06 +00:00
|
|
|
}
|
|
|
|
} else if (p.curr_is_token_or_id(g_hiding)) {
|
2014-06-17 01:42:39 +00:00
|
|
|
p.next();
|
2014-07-07 21:53:06 +00:00
|
|
|
while (p.curr_is_identifier()) {
|
|
|
|
name id = p.get_name_val();
|
|
|
|
p.next();
|
|
|
|
check_identifier(p, env, ns, id);
|
|
|
|
exceptions.push_back(id);
|
|
|
|
}
|
|
|
|
} else if (p.curr_is_identifier()) {
|
|
|
|
found_explicit = true;
|
|
|
|
while (p.curr_is_identifier()) {
|
|
|
|
name id = p.get_name_val();
|
|
|
|
p.next();
|
|
|
|
check_identifier(p, env, ns, id);
|
2014-09-04 01:37:01 +00:00
|
|
|
if (open)
|
|
|
|
env = add_expr_alias(env, as+id, ns+id);
|
|
|
|
else
|
2014-09-04 16:30:25 +00:00
|
|
|
env = add_abbrev(p, env, as+id, ns+id);
|
2014-07-07 21:53:06 +00:00
|
|
|
}
|
|
|
|
} else {
|
2014-09-04 01:37:01 +00:00
|
|
|
throw parser_error("invalid 'open/export' command option, identifier, 'hiding' or 'renaming' expected", p.pos());
|
2014-06-17 01:42:39 +00:00
|
|
|
}
|
2014-07-07 21:53:06 +00:00
|
|
|
if (found_explicit && !exceptions.empty())
|
2014-09-04 01:37:01 +00:00
|
|
|
throw parser_error("invalid 'open/export' command option, mixing explicit and implicit 'open/export' options", p.pos());
|
|
|
|
p.check_token_next(g_rparen, "invalid 'open/export' command option, ')' expected");
|
|
|
|
}
|
|
|
|
if (!found_explicit) {
|
|
|
|
if (open) {
|
|
|
|
env = add_aliases(env, ns, as, exceptions.size(), exceptions.data());
|
|
|
|
} else {
|
|
|
|
environment new_env = env;
|
|
|
|
env.for_each_declaration([&](declaration const & d) {
|
|
|
|
if (!is_protected(env, d.get_name()) &&
|
|
|
|
is_prefix_of(ns, d.get_name()) &&
|
|
|
|
!is_exception(d.get_name(), ns, exceptions.size(), exceptions.data())) {
|
|
|
|
name new_id = d.get_name().replace_prefix(ns, as);
|
|
|
|
if (!new_id.is_anonymous())
|
2014-09-04 16:30:25 +00:00
|
|
|
new_env = add_abbrev(p, new_env, new_id, d.get_name());
|
2014-09-04 01:37:01 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
env = new_env;
|
|
|
|
}
|
2014-06-17 01:42:39 +00:00
|
|
|
}
|
|
|
|
}
|
2014-07-07 21:53:06 +00:00
|
|
|
if (!p.curr_is_token(g_lbracket) && !p.curr_is_identifier())
|
|
|
|
break;
|
2014-06-17 01:42:39 +00:00
|
|
|
}
|
|
|
|
return env;
|
|
|
|
}
|
2014-09-04 01:37:01 +00:00
|
|
|
environment open_cmd(parser & p) { return open_export_cmd(p, true); }
|
|
|
|
environment export_cmd(parser & p) { return open_export_cmd(p, false); }
|
2014-06-17 01:42:39 +00:00
|
|
|
|
2014-09-19 19:30:36 +00:00
|
|
|
bool parse_persistent(parser & p, bool & persistent) {
|
|
|
|
if (p.curr_is_token_or_id(g_persistent)) {
|
|
|
|
p.next();
|
|
|
|
persistent = true;
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-26 15:08:39 +00:00
|
|
|
environment coercion_cmd(parser & p) {
|
2014-09-19 19:30:36 +00:00
|
|
|
bool persistent = false;
|
|
|
|
parse_persistent(p, persistent);
|
2014-09-12 19:13:29 +00:00
|
|
|
name f = p.check_constant_next("invalid 'coercion' command, constant expected");
|
2014-06-26 15:08:39 +00:00
|
|
|
if (p.curr_is_token(g_colon)) {
|
|
|
|
p.next();
|
2014-09-12 19:13:29 +00:00
|
|
|
name C = p.check_constant_next("invalid 'coercion' command, constant expected");
|
2014-09-19 19:30:36 +00:00
|
|
|
return add_coercion(p.env(), f, C, p.ios(), persistent);
|
2014-06-26 15:08:39 +00:00
|
|
|
} else {
|
2014-09-19 19:30:36 +00:00
|
|
|
return add_coercion(p.env(), f, p.ios(), persistent);
|
2014-06-26 15:08:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-17 01:03:40 +00:00
|
|
|
environment opaque_cmd_core(parser & p, bool hiding) {
|
2014-07-06 01:58:20 +00:00
|
|
|
environment env = p.env();
|
|
|
|
bool found = false;
|
2014-09-17 01:03:40 +00:00
|
|
|
while (p.curr_is_identifier()) {
|
|
|
|
name c = p.check_constant_next("invalid 'opaque/transparent' command, constant expected");
|
|
|
|
found = true;
|
|
|
|
if (hiding)
|
|
|
|
env = hide_definition(env, c);
|
2014-07-06 01:58:20 +00:00
|
|
|
else
|
2014-09-17 01:03:40 +00:00
|
|
|
env = expose_definition(env, c);
|
2014-07-06 01:58:20 +00:00
|
|
|
}
|
|
|
|
if (!found)
|
2014-09-17 01:03:40 +00:00
|
|
|
throw exception("invalid empty 'opaque/transparent' command");
|
2014-07-06 01:58:20 +00:00
|
|
|
return env;
|
|
|
|
}
|
|
|
|
|
2014-09-17 01:03:40 +00:00
|
|
|
environment opaque_cmd(parser & p) {
|
|
|
|
return opaque_cmd_core(p, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
environment transparent_cmd(parser & p) {
|
|
|
|
return opaque_cmd_core(p, false);
|
|
|
|
}
|
|
|
|
|
2014-08-11 20:55:29 +00:00
|
|
|
environment erase_cache_cmd(parser & p) {
|
|
|
|
name n = p.check_id_next("invalid #erase_cache command, identifier expected");
|
|
|
|
p.erase_cached_definition(n);
|
|
|
|
return p.env();
|
|
|
|
}
|
|
|
|
|
2014-06-11 18:52:58 +00:00
|
|
|
cmd_table init_cmd_table() {
|
|
|
|
cmd_table r;
|
2014-09-03 23:00:38 +00:00
|
|
|
add_cmd(r, cmd_info("open", "create aliases for declarations, and use objects defined in other namespaces", open_cmd));
|
2014-09-04 01:37:01 +00:00
|
|
|
add_cmd(r, cmd_info("export", "create abbreviations for declarations, and export objects defined in other namespaces", export_cmd));
|
2014-06-17 00:27:43 +00:00
|
|
|
add_cmd(r, cmd_info("set_option", "set configuration option", set_option_cmd));
|
2014-06-16 20:00:35 +00:00
|
|
|
add_cmd(r, cmd_info("exit", "exit", exit_cmd));
|
2014-06-13 22:13:32 +00:00
|
|
|
add_cmd(r, cmd_info("print", "print a string", print_cmd));
|
|
|
|
add_cmd(r, cmd_info("section", "open a new section", section_cmd));
|
2014-08-23 22:44:28 +00:00
|
|
|
add_cmd(r, cmd_info("context", "open a new context", context_cmd));
|
2014-06-13 22:13:32 +00:00
|
|
|
add_cmd(r, cmd_info("namespace", "open a new namespace", namespace_cmd));
|
|
|
|
add_cmd(r, cmd_info("end", "close the current namespace/section", end_scoped_cmd));
|
|
|
|
add_cmd(r, cmd_info("check", "type check given expression, and display its type", check_cmd));
|
2014-06-26 15:08:39 +00:00
|
|
|
add_cmd(r, cmd_info("coercion", "add a new coercion", coercion_cmd));
|
2014-09-17 01:03:40 +00:00
|
|
|
add_cmd(r, cmd_info("opaque", "mark constants as opaque for the elaborator/unifier", opaque_cmd));
|
|
|
|
add_cmd(r, cmd_info("transparent", "mark constants as transparent for the elaborator/unifier", transparent_cmd));
|
2014-08-11 20:55:29 +00:00
|
|
|
add_cmd(r, cmd_info("#erase_cache", "erase cached definition (for debugging purposes)", erase_cache_cmd));
|
2014-08-07 02:13:09 +00:00
|
|
|
|
2014-06-18 17:36:21 +00:00
|
|
|
register_decl_cmds(r);
|
2014-06-18 20:55:48 +00:00
|
|
|
register_inductive_cmd(r);
|
2014-07-29 02:04:57 +00:00
|
|
|
register_structure_cmd(r);
|
2014-06-17 20:39:44 +00:00
|
|
|
register_notation_cmds(r);
|
2014-06-17 20:35:31 +00:00
|
|
|
register_calc_cmds(r);
|
2014-08-21 17:36:44 +00:00
|
|
|
register_begin_end_cmds(r);
|
2014-07-04 21:25:44 +00:00
|
|
|
register_class_cmds(r);
|
2014-07-08 21:28:33 +00:00
|
|
|
register_tactic_hint_cmd(r);
|
2014-06-11 18:52:58 +00:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2014-06-11 00:02:06 +00:00
|
|
|
cmd_table get_builtin_cmds() {
|
2014-06-11 18:52:58 +00:00
|
|
|
static optional<cmd_table> r;
|
|
|
|
if (!r)
|
|
|
|
r = init_cmd_table();
|
|
|
|
return *r;
|
2014-06-11 00:02:06 +00:00
|
|
|
}
|
|
|
|
}
|