deep-conditions-nesting.js 278 B

123456789101112131415161718192021222324252627
  1. bar();
  2. function foo () {
  3. }
  4. function bar () {
  5. }
  6. function baz () {
  7. function inner1 () {
  8. }
  9. if (true) {
  10. switch (true) {
  11. case true:
  12. while (true) {
  13. inner1();
  14. }
  15. }
  16. }
  17. }
  18. baz();
  19. foo();