2014-06-12 03:56:10 +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
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "frontends/lean/parse_table.h"
|
|
|
|
namespace lean {
|
|
|
|
parse_table get_builtin_nud_table();
|
|
|
|
parse_table get_builtin_led_table();
|
2014-07-27 04:56:35 +00:00
|
|
|
bool is_show_aux_name(name const & n);
|
2014-09-23 17:00:36 +00:00
|
|
|
void initialize_builtin_exprs();
|
|
|
|
void finalize_builtin_exprs();
|
2014-06-12 03:56:10 +00:00
|
|
|
}
|