diff options
Diffstat (limited to 'devtools/shared/tests/xpcshell/throwing-module-2.js')
-rw-r--r-- | devtools/shared/tests/xpcshell/throwing-module-2.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/devtools/shared/tests/xpcshell/throwing-module-2.js b/devtools/shared/tests/xpcshell/throwing-module-2.js new file mode 100644 index 0000000000..3e723844ec --- /dev/null +++ b/devtools/shared/tests/xpcshell/throwing-module-2.js @@ -0,0 +1,8 @@ +"use strict"; + +function throwingMethod() { + // eslint-disable-next-line no-throw-literal + throw "my-exception"; +} + +throwingMethod(); |