feat(doc/export_format): update documentation

This commit is contained in:
Leonardo de Moura 2015-07-28 16:01:17 -07:00
parent ad5d792a8e
commit 6805aab344

View file

@ -150,6 +150,10 @@ The command `#DI` is the direct import, it instructs the reader to import the fi
the hierarchical name `nidx`. The command `#RI` is the relative import, the integer represents how many `../` should be added the path
represented by the hierarchical name `nidx`.
Optionally, we may request Lean to generate self contained export
files that include any declaration the exported module depends on. In
this case, the exported file does not include `#DI` or `#RI` commands.
Global universe level declaration
---------------------------------
@ -270,5 +274,8 @@ is encoded by the following sequence of commands
Exporting declarations
----------------------
The command line option `-E filename` is used to export declarations
in the format described above.
The command line option `-E filename` (or `--export=filename`) is used
to export declarations in the format described above. The command
line option `-A filename` (or `--export-all=filename`) produces a self
contained export file that contains any declaration the `.lean` or
`.hlean` file depends on.