diff options
Diffstat (limited to 'devtools/client/webconsole/test/browser/test-location-debugger-link-logpoint-1.js')
-rw-r--r-- | devtools/client/webconsole/test/browser/test-location-debugger-link-logpoint-1.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/devtools/client/webconsole/test/browser/test-location-debugger-link-logpoint-1.js b/devtools/client/webconsole/test/browser/test-location-debugger-link-logpoint-1.js new file mode 100644 index 0000000000..40e5461e2e --- /dev/null +++ b/devtools/client/webconsole/test/browser/test-location-debugger-link-logpoint-1.js @@ -0,0 +1,13 @@ +/* Any copyright is dedicated to the Public Domain. + * http://creativecommons.org/publicdomain/zero/1.0/ */ + +"use strict"; + +function add() { + const a = 1; + const b = 2; + + return a + b; +} + +add(); |