Types

Number Types

numtypeI::=i32i32|i64i64|f32f32|f64f64

Vector Types

vectypeI::=v128v128

Heap Types

heaptypeI::=funcfunc|externextern|x:typeidxIx

Reference Types

reftypeI::=( ref  ht:heaptype )ref ht|( ref  null  ht:heaptype )ref null ht

Abbreviations

There are shorthands for references to abstract heap types.

funcref( ref  null  func )externref( ref  null  extern )

Value Types

valtypeI::=t:numtypeIt|t:vectypeIt|t:reftypeIt

Function Types

functypeI::=( func  t1:vec(paramI)  t2:vec(resultI) )[t1][t2]paramI::=( param  id?  t:valtypeI )tresultI::=( result  t:valtypeI )t

Note

The optional identifier names for parameters in a function type only have documentation purpose. They cannot be referenced from anywhere.

Abbreviations

Multiple anonymous parameters or results may be combined into a single declaration:

(  param  valtype  )((  param  valtype  ))(  result  valtype  )((  result  valtype  ))

Limits

limits::=n:u32{min n,max ϵ}|n:u32  m:u32{min n,max m}

Memory Types

memtypeI::=lim:limitslim

Table Types

tabletypeI::=lim:limits  et:reftypeIlim et

Global Types

globaltypeI::=t:valtypeconst t|( mut  t:valtypeI )var t