1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/devtools/debugger/test/code_function-search-02.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,21 @@ 1.4 +/* Any copyright is dedicated to the Public Domain. 1.5 + http://creativecommons.org/publicdomain/zero/1.0/ */ 1.6 + 1.7 +var test2 = function() { 1.8 + // Blah! Second source! 1.9 +} 1.10 + 1.11 +var test3 = function test3_NAME() { 1.12 +} 1.13 + 1.14 +var test4_SAME_NAME = function test4_SAME_NAME() { 1.15 +} 1.16 + 1.17 +test.prototype.x = function X() { 1.18 +}; 1.19 +test.prototype.sub.y = function Y() { 1.20 +}; 1.21 +test.prototype.sub.sub.z = function Z() { 1.22 +}; 1.23 +test.prototype.sub.sub.sub.t = this.x = this.y = this.z = function() { 1.24 +};