-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Warn when functions intended as constructors are called without new (#…
…2021) * Warn when pg.Pool() isn’t called as a constructor in preparation for #1541. `eval` is a bit awkward, but it’s more accurate than an `instanceof` check and will work on platforms new enough to support pg 8 (i.e. only not Node 4). * Warn when Query() isn’t called as a constructor
- Loading branch information
1 parent
c1f954b
commit 2b59209
Showing
4 changed files
with
49 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
'use strict' | ||
|
||
const warnDeprecation = require('./warn-deprecation') | ||
|
||
// Node 4 doesn’t support new.target. | ||
let hasNewTarget | ||
|
||
try { | ||
// eslint-disable-next-line no-eval | ||
eval('(function () { new.target })') | ||
hasNewTarget = true | ||
} catch (error) { | ||
hasNewTarget = false | ||
} | ||
|
||
const checkConstructor = (name, code, getNewTarget) => { | ||
if (hasNewTarget && getNewTarget() === undefined) { | ||
warnDeprecation(`Constructing a ${name} without new is deprecated and will stop working in pg 8.`, code) | ||
} | ||
} | ||
|
||
module.exports = checkConstructor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
'use strict' | ||
|
||
const util = require('util') | ||
|
||
const dummyFunctions = new Map() | ||
|
||
// Node 4 doesn’t support process.emitWarning(message, 'DeprecationWarning', code). | ||
const emitDeprecationWarning = (message, code) => { | ||
let dummy = dummyFunctions.get(code) | ||
|
||
if (dummy === undefined) { | ||
dummy = util.deprecate(() => {}, message) | ||
dummyFunctions.set(code, dummy) | ||
} | ||
|
||
dummy() | ||
} | ||
|
||
module.exports = emitDeprecationWarning |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters