kit

kit
git clone https://git.ryansepassi.com/git/kit.git
Log | Files | Refs | README

br_table.wat (224B)


      1 (module
      2   (func (export "test_main") (result i32)
      3     (block
      4       (block
      5         (block
      6           i32.const 1
      7           br_table 0 1 2)
      8         i32.const 1
      9         return)
     10       i32.const 42
     11       return)
     12     i32.const 2))