1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

wasm: add basic debuginfo through name section (#18130)

This commit is contained in:
l-m
2023-05-08 06:31:36 +00:00
committed by GitHub
parent 5bdf94a7bc
commit 3a06b55388
13 changed files with 541 additions and 109 deletions

View File

@@ -6,11 +6,11 @@ fn main() {
{
fac.local_get(0)
fac.eqz(.i64_t)
fac.c_if([], [.i64_t])
bif := fac.c_if([], [.i64_t])
{
fac.i64_const(1)
}
fac.c_else()
fac.c_else(bif)
{
{
fac.local_get(0)
@@ -23,7 +23,7 @@ fn main() {
}
fac.mul(.i64_t)
}
fac.c_end_if()
fac.c_end(bif)
}
m.commit(fac, true)
print(m.compile().bytestr())