diff options
Diffstat (limited to 'devtools/client/debugger/test/mochitest/code_function-search-02.js')
-rw-r--r-- | devtools/client/debugger/test/mochitest/code_function-search-02.js | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/devtools/client/debugger/test/mochitest/code_function-search-02.js b/devtools/client/debugger/test/mochitest/code_function-search-02.js new file mode 100644 index 000000000..ab25641d2 --- /dev/null +++ b/devtools/client/debugger/test/mochitest/code_function-search-02.js @@ -0,0 +1,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 () { +}; |