wasmfmt 0.2.2

A WebAssembly formatter
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(module
	(func (export "abs") (param $x f64) (result f64)
		(local.get $x)
		f64.abs
	)
	(func (export "neg") (param $x f64) (result f64)
		(local.get $x)
		f64.neg
	)
	(func (export "copysign") (param $x f64) (param $y f64) (result f64)
		(local.get $x)
		(local.get $y)
		f64.copysign
	)
)