PageRenderTime 145ms CodeModel.GetById 132ms RepoModel.GetById 0ms app.codeStats 0ms

/js/lib/Socket.IO-node/support/expresso/deps/jscoverage/tests/javascript/javascript-for.js

http://github.com/onedayitwillmake/RealtimeMultiplayerNodeJs
JavaScript | 22 lines | 17 code | 5 blank | 0 comment | 6 complexity | 0586ab2aa62637d4542f828375c75903 MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.1, MPL-2.0-no-copyleft-exception, BSD-3-Clause
  1. for (i in x) {
  2. x();
  3. }
  4. for (var i in x) {
  5. x();
  6. }
  7. for (i = 0; i < x; i++) {
  8. x();
  9. }
  10. for (var j = 0; j < x; j++) {
  11. x();
  12. }
  13. for (i in x)
  14. x();
  15. for (i.value in x) {
  16. x();
  17. }