├── .gitattributes ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── Cargo.toml ├── README.md ├── src ├── bin │ └── wasm-nm.rs └── lib.rs └── tests ├── README.md ├── hello-dash-i.expected ├── hello.expected ├── hello.rs ├── hello.wasm ├── small-hello-dash-e.expected ├── small-hello-dash-j.expected ├── small-hello.expected ├── small-hello.wasm └── tests.rs /.gitattributes: -------------------------------------------------------------------------------- 1 | README.md -diff -merge 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | /target/ 3 | **/*.rs.bk 4 | Cargo.lock 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/wasm-nm/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/wasm-nm/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/wasm-nm/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/wasm-nm/HEAD/README.md -------------------------------------------------------------------------------- /src/bin/wasm-nm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/wasm-nm/HEAD/src/bin/wasm-nm.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/wasm-nm/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/wasm-nm/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/hello-dash-i.expected: -------------------------------------------------------------------------------- 1 | i imported 2 | -------------------------------------------------------------------------------- /tests/hello.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/wasm-nm/HEAD/tests/hello.expected -------------------------------------------------------------------------------- /tests/hello.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/wasm-nm/HEAD/tests/hello.rs -------------------------------------------------------------------------------- /tests/hello.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/wasm-nm/HEAD/tests/hello.wasm -------------------------------------------------------------------------------- /tests/small-hello-dash-e.expected: -------------------------------------------------------------------------------- 1 | e fluxions 2 | e quicksilver 3 | -------------------------------------------------------------------------------- /tests/small-hello-dash-j.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/wasm-nm/HEAD/tests/small-hello-dash-j.expected -------------------------------------------------------------------------------- /tests/small-hello.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/wasm-nm/HEAD/tests/small-hello.expected -------------------------------------------------------------------------------- /tests/small-hello.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/wasm-nm/HEAD/tests/small-hello.wasm -------------------------------------------------------------------------------- /tests/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/wasm-nm/HEAD/tests/tests.rs --------------------------------------------------------------------------------