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 /test/decompile/names.txt | |
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 'test/decompile/names.txt')
-rw-r--r-- | test/decompile/names.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/decompile/names.txt b/test/decompile/names.txt index 3874b49c..cc31f1c5 100644 --- a/test/decompile/names.txt +++ b/test/decompile/names.txt @@ -99,18 +99,18 @@ export global G1_EXPORT:int = 0; data D0_SYM(offset: 0) = "Hello, World!"; data D1_SYM(offset: 10) = "bar"; -function F0():int { +function F0():int { // func0 var L0:int; return L0; } -function F1_NS() { +function F1_NS() { // func1 } -function F2_SYM() { +function F2_SYM() { // func2 } -export function F3_EXPORT() { +export function F3_EXPORT() { // func3 } ;;; STDOUT ;;) |