Imports And Exports
An Aqua source file has a head and a body. The body contains function definitions, services, types, constants. The header manages what is imported from other files and what is exported.
Module
By default, .aqua
file exports and declares everything it contains. With module
header you can describe the .aqua
file's interface.
Module.Name
may contain dots.
ModuleName
can be used as the module's name when this file is use
d. In this case, only what is enumerated in declares
section will be available. declares *
allows you to declare everything in the file as the module interface.
Import Expression
The main way to import a file is via import
expression:
Aqua compiler takes a source directory and a list of import directories (usually with node_modules
as a default). You can use relative paths to .aqua
files, relatively to the current file's path, and to import folders.
.aqua
extension in import
and use
expressions can be ommited. So, import "builtin.aqua"
does exactly the same as import "builtin"
.
Everything defined in the file is imported into the current namespace.
You can cherry-pick and rename imports using import ... from
expression:
Use Expression
The use
expression makes it possible to import a file into a named scope.
If the imported file has a module
header, from
and as
sections of use
may be omitted.
Export
While it's useful to split the code into several functions into different files, it's not always a good idea to compile everything into the host language.
Another problem is libraries distribution. If a developer wants to deliver an .aqua
library, he or she often needs to provide it in compiled form as well.
export
lets a developer decide what exactly is going to be exported, including imported functions.
Last updated
Was this helpful?