/* Copyright (c) 2013-2014 Microsoft Corporation. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Author: Leonardo de Moura */ #include #include "util/lua.h" #include "util/script_state.h" namespace lean { void open_frontend_lean(lua_State *) { // NOLINT // TODO(Leo) } void register_frontend_lean_module() { script_state::register_module(open_frontend_lean); } }