Skip to content

Commit

Permalink
Merge pull request #425 from WebAssembly/binji-export
Browse files Browse the repository at this point in the history
Define export names
  • Loading branch information
binji committed Oct 23, 2015
2 parents 10ba4e8 + d526cfe commit f680241
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Modules.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ A module defines a set of functions in its
these functions to be **exports**. The meaning of exports (how and when they are
called) is defined by the host environment. For example, a minimal shell
environment might only probe for and call a `_start` export when given a module
to execute.
to execute. Exports are exported by name, where the name is an arbitrary byte
string of a given length. The host may need to mangle these names.

A module can declare a set of **imports**. An import is a tuple containing a
module name, the name of an exported function to import from the named module,
Expand Down

0 comments on commit f680241

Please sign in to comment.