summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/code_function-search-02.js
blob: ab25641d247a2628241925a50f843c0f03610200 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

var test2 = function () {
  // Blah! Second source!
};

var test3 = function test3_NAME() {
};

var test4_SAME_NAME = function test4_SAME_NAME() {
};

test.prototype.x = function X() {
};
test.prototype.sub.y = function Y() {
};
test.prototype.sub.sub.z = function Z() {
};
test.prototype.sub.sub.sub.t = this.x = this.y = this.z = function () {
};