mirror of https://github.com/nodejs/node.git
timers: give Timeouts a constructor name
Refs: https://github.com/nodejs/node/pull/5792 PR-URL: https://github.com/nodejs/node/pull/5793 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>pull/5793/head
parent
a76cb4d2f6
commit
4fe02e23af
|
@ -439,7 +439,7 @@ exports.clearInterval = function(timer) {
|
|||
};
|
||||
|
||||
|
||||
const Timeout = function(after) {
|
||||
function Timeout(after) {
|
||||
this._called = false;
|
||||
this._idleTimeout = after;
|
||||
this._idlePrev = this;
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
undefined_reference_error_maker;
|
||||
^
|
||||
ReferenceError: undefined_reference_error_maker is not defined
|
||||
at ._onTimeout (*test*message*timeout_throw.js:*:*)
|
||||
at Timeout._onTimeout (*test*message*timeout_throw.js:*:*)
|
||||
at tryOnTimeout (timers.js:*:*)
|
||||
at Timer.listOnTimeout (timers.js:*:*)
|
||||
|
|
Loading…
Reference in New Issue