From 5f8de423f190bbb79a62f804151bc24824fa32d8 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Fri, 2 Feb 2018 04:16:08 -0500 Subject: Add m-esr52 at 52.6.0 --- .../test/mochitest/code_function-search-02.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 devtools/client/debugger/test/mochitest/code_function-search-02.js (limited to 'devtools/client/debugger/test/mochitest/code_function-search-02.js') 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 () { +}; -- cgit v1.2.3