wasmFailValidateText(`(module
(func (param i32) (result i32)
(loop (if (i32.const 0) (then (br 0))) (local.get 0)))
(export "" (func 0))
)`, /(unused values not explicitly dropped by end of block)|(values remaining on stack at end of block)/);
wasmFailValidateText(`(module
(func (param i32)
(loop (if (i32.const 0) (then (br 0))) (local.get 0)))
(export "" (func 0))
)`, /(unused values not explicitly dropped by end of block)|(values remaining on stack at end of block)/);
wasmFailValidateText(`
(module
(func (result i32)
(loop
(i32.const 0)
(br_table 1 0 (i32.const 15))
)
)
)`, /(br_table targets must all have the same arity)|(br_table target labels have different types)/);
wasmFailValidateText(`
(module
(func (result i32)
(loop (result i32)
(i32.const 0)
(br_table 1 0 (i32.const 15))
)
)
)`, /(br_table targets must all have the same arity)|(br_table target labels have different types)/);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.