Sha256: d1fff47286f00c714727aeeb56cfcb0e90a6356066ad0310b72fcf39e05e0663

Contents?: true

Size: 1011 Bytes

Versions: 3

Compression:

Stored size: 1011 Bytes

Contents


print('entry'); var label; var state; var decisions = [4, 1, 7, 2, 6, 6, 8]; var index = 0; function check() { if (index == decisions.length) throw 'HALT'; return decisions[index++] }
switch (the_var) {
default: {
}
}
print(5); state = check();
switch (the_var) {
default: {
}
}
print(6); state = check();
switch (the_var) {
state == 7 {
 print(7); state = check();
 switch (the_var) {
 default: {
  label = 3;
 }
 }
 break;
}
default: {
}
}
L5: while(1) {
 if (label == 3) {
  label = 0;
  print(2); state = check();
  switch (the_var) {
  default: {
  }
  }
 }
 print(1); state = check();
 switch (the_var) {
 default: {
 }
 }
 while(1) {
  print(3); state = check();
  switch (the_var) {
  state == 8 {
   break;
  }
  default: {
   continue L5;
  }
  }
  print(8); state = check();
  switch (the_var) {
  state == 4 {
   break;
  }
  default: {
   label = 3;
   continue L5;
  }
  }
  print(4); state = check();
  switch (the_var) {
  state == 3 {
   break;
  }
  default: {
   continue L5;
  }
  }
 }
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
webruby-0.2.4 modules/emscripten/src/relooper/test_fuzz1.txt
webruby-0.2.2 modules/emscripten/src/relooper/test_fuzz1.txt
webruby-0.2.1 modules/emscripten/src/relooper/test_fuzz1.txt