/js/lib/Socket.IO-node/support/expresso/deps/jscoverage/tests/javascript/javascript-while.js
http://github.com/onedayitwillmake/RealtimeMultiplayerNodeJs · JavaScript · 35 lines · 29 code · 6 blank · 0 comment · 10 complexity · 6938bbe7930a8e28affee2b37d305df6 MD5 · raw file
- while (x) {
- x();
- }
- while (x) {
- ;
- }
- while (x)
- x();
- while (x)
- ;
- while (x) {
- if (x) {
- continue;
- }
- }
- label:
- while (x) {
- if (x) {
- continue label;
- }
- }
- label2: {
- f();
- while (x) {
- if (x) {
- break label2;
- }
- }
- }