code_function-search-02.js 458 B

12345678910111213141516171819202122
  1. /* Any copyright is dedicated to the Public Domain.
  2. http://creativecommons.org/publicdomain/zero/1.0/ */
  3. var test2 = function () {
  4. // Blah! Second source!
  5. };
  6. var test3 = function test3_NAME() {
  7. };
  8. var test4_SAME_NAME = function test4_SAME_NAME() {
  9. };
  10. test.prototype.x = function X() {
  11. };
  12. test.prototype.sub.y = function Y() {
  13. };
  14. test.prototype.sub.sub.z = function Z() {
  15. };
  16. test.prototype.sub.sub.sub.t = this.x = this.y = this.z = function () {
  17. };