lean2/src/library/register_module.h
Leonardo de Moura 3169f8c126 feat(library): add mk_explicit/is_explicit procedures for '@'-expressions
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2014-06-24 12:11:27 -07:00

38 lines
970 B
C++

/*
Copyright (c) 2013 Microsoft Corporation. All rights reserved.
Released under Apache 2.0 license as described in the file LICENSE.
Author: Leonardo de Moura
*/
#pragma once
#include "util/script_state.h"
#include "library/kernel_bindings.h"
#include "library/resolve_macro.h"
#include "library/coercion.h"
#include "library/private.h"
#include "library/placeholder.h"
#include "library/aliases.h"
#include "library/choice.h"
#include "library/explicit.h"
#include "library/unifier.h"
#include "library/scoped_ext.h"
// #include "library/hop_match.h"
namespace lean {
inline void open_core_module(lua_State * L) {
open_kernel_module(L);
open_resolve_macro(L);
open_coercion(L);
open_private(L);
open_placeholder(L);
open_aliases(L);
open_choice(L);
open_scoped_ext(L);
open_unifier(L);
open_explicit(L);
// open_hop_match(L);
}
inline void register_core_module() {
script_state::register_module(open_core_module);
}
}