| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -634,8 +634,8 @@ Type: End-of-Life | |||
| 634 | 634 | ||
| 635 | 635 | *Note*: change was made while `async_hooks` was an experimental API. | |
| 636 | 636 | ||
| 637 | - <a id="DEP00XX"></a> | ||
| 638 | - ### DEP00XX: Several internal properties of net.Server | ||
| 637 | + <a id="DEP0073"></a> | ||
| 638 | + ### DEP0073: Several internal properties of net.Server | ||
| 639 | 639 | ||
| 640 | 640 | Type: Runtime | |
| 641 | 641 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1708,27 +1708,27 @@ if (process.platform === 'win32') { | |||
| 1708 | 1708 | Object.defineProperty(Server.prototype, '_usingSlaves', { | |
| 1709 | 1709 | get: internalUtil.deprecate(function() { | |
| 1710 | 1710 | return this._usingWorkers; | |
| 1711 | - }, 'Accessing internal properties of net.Server is deprecated.', 'DEP00XX'), | ||
| 1711 | + }, 'Accessing internal properties of net.Server is deprecated.', 'DEP0073'), | ||
| 1712 | 1712 | set: internalUtil.deprecate((val) => { | |
| 1713 | 1713 | this._usingWorkers = val; | |
| 1714 | - }, 'Accessing internal properties of net.Server is deprecated.', 'DEP00XX'), | ||
| 1714 | + }, 'Accessing internal properties of net.Server is deprecated.', 'DEP0073'), | ||
| 1715 | 1715 | configurable: true, enumerable: false | |
| 1716 | 1716 | }); | |
| 1717 | 1717 | ||
| 1718 | 1718 | Object.defineProperty(Server.prototype, '_slaves', { | |
| 1719 | 1719 | get: internalUtil.deprecate(function() { | |
| 1720 | 1720 | return this._workers; | |
| 1721 | - }, 'Accessing internal properties of net.Server is deprecated.', 'DEP00XX'), | ||
| 1721 | + }, 'Accessing internal properties of net.Server is deprecated.', 'DEP0073'), | ||
| 1722 | 1722 | set: internalUtil.deprecate((val) => { | |
| 1723 | 1723 | this._workers = val; | |
| 1724 | - }, 'Accessing internal properties of net.Server is deprecated.', 'DEP00XX'), | ||
| 1724 | + }, 'Accessing internal properties of net.Server is deprecated.', 'DEP0073'), | ||
| 1725 | 1725 | configurable: true, enumerable: false | |
| 1726 | 1726 | }); | |
| 1727 | 1727 | ||
| 1728 | 1728 | Object.defineProperty(Server.prototype, '_setupSlave', { | |
| 1729 | 1729 | value: internalUtil.deprecate(function(socketList) { | |
| 1730 | 1730 | return this._setupWorker(socketList); | |
| 1731 | - }, 'Accessing internal properties of net.Server is deprecated.', 'DEP00XX'), | ||
| 1731 | + }, 'Accessing internal properties of net.Server is deprecated.', 'DEP0073'), | ||
| 1732 | 1732 | configurable: true, enumerable: false | |
| 1733 | 1733 | }); | |
| 1734 | 1734 | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments