Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/rewire.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'testLib/throwError.js')
-rw-r--r--testLib/throwError.js7
1 files changed, 3 insertions, 4 deletions
diff --git a/testLib/throwError.js b/testLib/throwError.js
index e85ea36..0993618 100644
--- a/testLib/throwError.js
+++ b/testLib/throwError.js
@@ -1,8 +1,7 @@
// Using deliberately const here because we know that we're transform const to let
-const test = 1;
+const a = "a";
module.exports = function () {
- let test = 1;
-
- throw new Error();
+ // Ensure that column numbers are correct
+ const b = "b"; throw new Error();
};