2013-11-09 20:47:52 +00:00
|
|
|
/*
|
|
|
|
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 <lua.hpp>
|
|
|
|
#include "kernel/expr.h"
|
|
|
|
namespace lean {
|
2013-11-15 01:19:51 +00:00
|
|
|
UDATA_DEFS(local_entry)
|
|
|
|
UDATA_DEFS_CORE(local_context)
|
2013-11-09 20:47:52 +00:00
|
|
|
void open_local_context(lua_State * L);
|
|
|
|
}
|