diff options
author | Kirill R. <iam@python273.pw> | 2024-10-08 20:55:47 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-08 10:55:47 -0700 |
commit | b15a13ef84b5a12aadeb1200521a89a2c95dce19 (patch) | |
tree | 661d812e5eeb8afd6dd5166950c5d8f132332e44 /src | |
parent | 646785d8b2b15a104d4ed0431125b2c781e141ea (diff) | |
download | wabt-b15a13ef84b5a12aadeb1200521a89a2c95dce19.tar.gz wabt-b15a13ef84b5a12aadeb1200521a89a2c95dce19.tar.bz2 wabt-b15a13ef84b5a12aadeb1200521a89a2c95dce19.zip |
wasm-decompile: add function index comments (#2482)
Diffstat (limited to 'src')
-rw-r--r-- | src/decompiler.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/decompiler.cc b/src/decompiler.cc index 257de836..cdb0a783 100644 --- a/src/decompiler.cc +++ b/src/decompiler.cc @@ -826,9 +826,9 @@ struct Decompiler { } } if (is_import) { - s += ";"; + s += cat("; // func", std::to_string(func_index)); } else { - s += " {\n"; + s += cat(" { // func", std::to_string(func_index), "\n"); auto val = DecompileExpr(ast.exp_stack[0], nullptr); IndentValue(val, indent_amount, {}); for (auto& stat : val.v) { |