2014-02-24 01:50:43 +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 "kernel/expr.h"
|
|
|
|
#include "kernel/formatter.h"
|
|
|
|
namespace lean {
|
2014-05-02 19:03:12 +00:00
|
|
|
format pp_indent_expr(formatter const & fmt, environment const & env, options const & opts, expr const & e);
|
2014-04-30 17:28:07 +00:00
|
|
|
format pp_type_expected(formatter const & fmt, environment const & env, options const & opts, expr const & e);
|
|
|
|
format pp_function_expected(formatter const & fmt, environment const & env, options const & opts, expr const & e);
|
|
|
|
format pp_app_type_mismatch(formatter const & fmt, environment const & env, options const & opts, expr const & app,
|
2014-02-24 01:50:43 +00:00
|
|
|
expr const & expected_type, expr const & given_type);
|
2014-04-30 17:28:07 +00:00
|
|
|
format pp_def_type_mismatch(formatter const & fmt, environment const & env, options const & opts, name const & n,
|
2014-02-24 01:50:43 +00:00
|
|
|
expr const & expected_type, expr const & given_type);
|
2014-06-25 15:51:33 +00:00
|
|
|
format pp_decl_has_metavars(formatter const & fmt, environment const & env, options const & opts, name const & n,
|
|
|
|
expr const & e, bool is_type);
|
2014-02-24 01:50:43 +00:00
|
|
|
}
|