mirror of
https://github.com/enso-org/enso.git
synced 2024-12-23 04:43:26 +03:00
9010cf93be
Ultimately, we want to forbid the `from ... export all` syntax. This PR starts by providing a way to explicitly export extension and conversion methods by name. Stdlib code will be modified in upcoming PR. # Important Notes A single name can refer to multiple extension or conversion methods. Exports are not qualified. For example, ``` type My_Type type Other_Type My_Type.ext_method x = x Other_Type.ext_method x = x ``` ``` from project.Mod export ext_method ``` will export both `My_Type.ext_method` and `Other_Type.ext_method`. |
||
---|---|---|
.. | ||
java | ||
js/runner | ||
rust | ||
scala | ||
README.md |
Libraries
This directory contains the libraries that should remain in this project, but that are not technically part of the main language implementation itself.