github.com/moontrade/nogc@v0.1.7/alloc/tlsf/assert_tinygowasm.go (about) 1 //go:build tinygo.wasm 2 // +build tinygo.wasm 3 4 package tlsf 5 6 func assert(truth bool, message string) { 7 if !truth { 8 panic(message) 9 } 10 }