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 f32) (result f32)
		(local.get $x)
		f32.abs
	)
	(func (export "neg") (param $x f32) (result f32)
		(local.get $x)
		f32.neg
	)
	(func (export "copysign") (param $x f32) (param $y f32) (result f32)
		(local.get $x)
		(local.get $y)
		f32.copysign
	)
)