michael@0: /* Any copyright is dedicated to the Public Domain. michael@0: http://creativecommons.org/publicdomain/zero/1.0/ */ michael@0: michael@0: var test2 = function() { michael@0: // Blah! Second source! michael@0: } michael@0: michael@0: var test3 = function test3_NAME() { michael@0: } michael@0: michael@0: var test4_SAME_NAME = function test4_SAME_NAME() { michael@0: } michael@0: michael@0: test.prototype.x = function X() { michael@0: }; michael@0: test.prototype.sub.y = function Y() { michael@0: }; michael@0: test.prototype.sub.sub.z = function Z() { michael@0: }; michael@0: test.prototype.sub.sub.sub.t = this.x = this.y = this.z = function() { michael@0: };