diff options
author | Rich Trott <rtrott@gmail.com> | 2015-09-26 14:27:36 -0700 |
---|---|---|
committer | Rich Trott <rtrott@gmail.com> | 2015-10-08 17:32:08 -0700 |
commit | 47befffc5325a39e80208cafc9acf3827a5aa721 (patch) | |
tree | 149837427410a10c5a7e4b1d5f56c37482a48fad /node.gyp | |
parent | 01908d0a9a0db65b91270327850ae03ba8e0da16 (diff) | |
download | node-new-47befffc5325a39e80208cafc9acf3827a5aa721.tar.gz |
lib,test: deprecate _linklist
Deprecate _linklist and add test to confirm internal linklist and
public _linklist are the same.
PR-URL: https://github.com/nodejs/node/pull/3078
Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Diffstat (limited to 'node.gyp')
-rw-r--r-- | node.gyp | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -17,7 +17,6 @@ 'src/node.js', 'lib/_debug_agent.js', 'lib/_debugger.js', - 'lib/_linklist.js', 'lib/assert.js', 'lib/buffer.js', 'lib/child_process.js', @@ -39,6 +38,7 @@ 'lib/_http_outgoing.js', 'lib/_http_server.js', 'lib/https.js', + 'lib/_linklist.js', 'lib/module.js', 'lib/net.js', 'lib/os.js', @@ -70,9 +70,10 @@ 'lib/zlib.js', 'lib/internal/child_process.js', 'lib/internal/freelist.js', + 'lib/internal/linkedlist.js', 'lib/internal/module.js', - 'lib/internal/socket_list.js', 'lib/internal/repl.js', + 'lib/internal/socket_list.js', 'lib/internal/util.js', 'lib/internal/streams/lazy_transform.js', ], |