2013-08-08 02:10:12 +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
|
|
|
|
namespace lean {
|
2013-08-18 22:44:39 +00:00
|
|
|
constexpr unsigned g_eq_precedence = 50;
|
2013-12-06 21:23:20 +00:00
|
|
|
constexpr unsigned g_arrow_precedence = 25;
|
2013-12-18 22:37:55 +00:00
|
|
|
class environment;
|
|
|
|
class io_state;
|
|
|
|
void init_builtin_notation(environment const & env, io_state & st);
|
2013-08-08 02:10:12 +00:00
|
|
|
}
|