comments.js 209 B

123456789101112131415161718192021222324
  1. switch (true) {
  2. case true:
  3. // Good luck getting here
  4. case false:
  5. }
  6. switch (true) {
  7. case true:
  8. // Good luck getting here
  9. case false:
  10. }
  11. switch(x) {
  12. case x: {
  13. }
  14. // other
  15. case y: {
  16. }
  17. }