if.js 745 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. if (1)
  2. // comment
  3. {
  4. false
  5. }
  6. // comment
  7. else if (2)
  8. true
  9. // multi
  10. // ple
  11. // lines
  12. else if (3)
  13. // existing comment
  14. true
  15. // okay?
  16. else if (4) {
  17. // empty with existing comment
  18. }
  19. // comment
  20. else {
  21. }
  22. if (5) // comment
  23. true
  24. if (6) // comment
  25. {true}
  26. else if (7) // comment
  27. true
  28. else // comment
  29. {true}
  30. if (8) // comment
  31. // comment
  32. {true}
  33. else if (9) // comment
  34. // comment
  35. true
  36. else // comment
  37. // comment
  38. {true}
  39. if (10) /* comment */ // comment
  40. {true}
  41. else if (11) /* comment */
  42. true
  43. else if (12) // comment /* comment */ // comment
  44. true
  45. else if (13) /* comment */ /* comment */ // comment
  46. true
  47. else /* comment */
  48. {true}
  49. if (14) // comment
  50. /* comment */
  51. // comment
  52. {true}
  53. else if (15) // comment
  54. /* comment */
  55. /* comment */ // comment
  56. true