Skip to content
WASM Analyzer LogoWASM Analyzer LogoWASM Analyzer
GitHub

Exports

You’ll reach the Exports page by clicking the Exports navigation item on the WASM Analyzer sidebar. On the Exports page, you find information about exports the WebAssembly file exposes, if any. At the top of the Exports page, you find a summary of the following:

  • Exported Functions1
  • Exported Tables2
  • Exported Memories3
  • Exported Globals4

The WASM Analyzer exports page The summary section.


Clicking one of the summary items above takes you to the top of the related table.


You can read more about WebAssembly exports in the Exports section of our WebAssembly overview.

Below the summary, you find lists in sections representing those export statements that are present in the .wasm file, or package.





Exports search function


Above the Export lists, you’ll find the search bar:


Search bar The Exports search bar


Read on for information about how to run a search.






To run a basic search for Export names, or Module names matching a specific name search query, click on the search field. Type in a search word and press the enter key, tab out of the search field, or click elsewhere on the page. After you initiate a search, the list will update with a set of search results matching your query. If no matches are available, the list will be emtpy.





Lists

The Exports page gives you information about four WebAssembly sections:

  • Functions
  • Tables
  • Memories
  • Globals


Functions


You can read more about the functions in the export Functions list, in the Functions section of our WebAssembly overview.


Columns of the export Functions list:

namepurpose
Export1Function name in string format
Parameters2Typed parameters required by function
Result3Typed function output

The WASM Analyzer functions exports The exported functions list


The list can by sorted by clicking on the Export column header. One click sorts the list in in descending order on the selected column. Clicking the same column again sorts the list according to ascending order. A third click on the same column clears the current sort order and returns the list to its original unsorted state.



Tables


You can read more about the tables in the export Tables list, in the Tables section of our WebAssembly overview.


Columns of the exports Tables list:

namepurpose
Export1Table name in string format
Type2Function type in table, possible values: anyfunc and externalref
Minimum3Initial number of items, and minimum number of items in table
Maximum4Maximum number of items in table

The WASM Analyzer tables exports The exported tables tab


The list can by sorted by clicking on the Export, or Type column headers. One click sorts the list in in descending order on the selected column. Clicking the same column again sorts the list according to ascending order. A third click on the same column clears the current sort order and returns the list to its original unsorted state.



Memories


You can read more about the memories in the export Memories list, in the Memories section segment of this documentation.


Colummns of the export Memories list:

namepurpose
Export1Memory field name in string format
Thread Sharing2If shared memory (a SharedArrayBuffer) or not (an ArrayBuffer), possible values: true and false
Minimum3Minimum memory size in bytes, displayed as kilobytes/megabytes as appropriate
Maximum4Maximum memory size in bytes, displayed as kilobytes/megabytes as appropriate

The WASM Analyzer memories exports The exported memories list


The list can by sorted by clicking on the Export column header. One click sorts the list in in descending order on the selected column. Clicking the same column again sorts the list according to ascending order. A third click on the same column clears the current sort order and returns the list to its original unsorted state.



Globals


You can read more about the globals in the export Globals list, in the Globals section segment of this documentation.


Columns of the export Globals list:

namepurpose
Export1Global variable field name in string format
Type2Type of the global variable
Mutable3If global is mutable, possible values are true and false

The WASM Analyzer globals exports The export globals list.


The list can by sorted by clicking on the Export, or Type column headers. One click sorts the list in in descending order on the selected column. Clicking the same column again sorts the list according to ascending order. A third click on the same column clears the current sort order and returns the list to its original unsorted state.





Summary

  • The Exports page can be accessed by clicking the Exports navigation item in the WASM Analyzer sidebar.
  • The Exports page shows information about imported functions, tables, memories and globals.
  • The Exports lists are searchable and sortable.


Additional reading