Skip to content

Commit

Permalink
Update README.md to match changes in #133
Browse files Browse the repository at this point in the history
  • Loading branch information
lukewagner committed Oct 14, 2015
1 parent c1c1c9a commit ff81167
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ml-proto/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,12 +160,14 @@ case:
( case <value> <expr>* fallthrough? ) ;; = (case <int> (block <expr>*) fallthrough?)
( case <value> ) ;; = (case <int> (nop) fallthrough)
func: ( func <name>? <param>* <result>? <local>* <expr>* )
func: ( func <name>? <type>? <param>* <result>? <local>* <expr>* )
type: ( type <var> )
param: ( param <type>* ) | ( param <name> <type> )
result: ( result <type> )
local: ( local <type>* ) | ( local <name> <type> )
module: ( module <func>* <global>* <import>* <export>* <table>* <memory>? )
module: ( module <type>* <func>* <global>* <import>* <export>* <table>* <memory>? )
type: ( type <name>? ( func <param>* <result>? ) )
import: ( import <name>? "<module_name>" "<func_name>" (param <type>* ) (result <type>)* )
export: ( export "<char>*" <var> )
global: ( global <type>* ) | ( global <name> <type> )
Expand Down

0 comments on commit ff81167

Please sign in to comment.