code_function-search-01.js 642 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* Any copyright is dedicated to the Public Domain.
  2. http://creativecommons.org/publicdomain/zero/1.0/ */
  3. function test() {
  4. // Blah! First source!
  5. }
  6. test.prototype = {
  7. anonymousExpression: function () {
  8. },
  9. namedExpression: function NAME() {
  10. },
  11. sub: {
  12. sub: {
  13. sub: {
  14. }
  15. }
  16. }
  17. };
  18. var foo = {
  19. a_test: function () {
  20. },
  21. n_test: function x() {
  22. },
  23. sub: {
  24. a_test: function () {
  25. },
  26. n_test: function y() {
  27. },
  28. sub: {
  29. a_test: function () {
  30. },
  31. n_test: function z() {
  32. },
  33. sub: {
  34. test_SAME_NAME: function test_SAME_NAME() {
  35. }
  36. }
  37. }
  38. }
  39. };