This PR splits the environment used by the kernel from that used by the elaborator, providing the foundation for tracking of asynchronously elaborated declarations, which will exist as a concept only in the latter. Minor changes: * kernel diagnostics are moved from an environment extension to a direct environment as they are the only extension used directly by the kernel * `initQuot` is moved from an environment header field to a direct environment as it is the only header field used by the kernel; this also makes the remaining header immutable after import
18 lines
507 B
C++
18 lines
507 B
C++
/*
|
|
Copyright (c) 2014 Microsoft Corporation. All rights reserved.
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
Authors: Leonardo de Moura, Gabriel Ebner, Sebastian Ullrich
|
|
*/
|
|
#pragma once
|
|
#include <string>
|
|
#include <iostream>
|
|
#include <utility>
|
|
#include <vector>
|
|
#include "runtime/optional.h"
|
|
#include "library/elab_environment.h"
|
|
|
|
namespace lean {
|
|
/** \brief Store module using \c env. */
|
|
LEAN_EXPORT void write_module(elab_environment const & env, std::string const & olean_fn);
|
|
}
|