1be758e4ef
This is also a test for the macro_definition infrastructure that we have in the kernel. Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
14 lines
357 B
C++
14 lines
357 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 "util/lua.h"
|
|
#include "kernel/expr.h"
|
|
|
|
namespace lean {
|
|
expr mk_resolve_macro(expr const & l, expr const & H1, expr const & H2);
|
|
void open_resolve_macro(lua_State * L);
|
|
}
|