aboutsummaryrefslogtreecommitdiff
path: root/lib/internal
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2018-12-18 23:05:18 -0800
committerRich Trott <rtrott@gmail.com>2018-12-21 10:40:49 -0800
commit55a1889af7159adaba59946a8139cfea12744819 (patch)
treee27e37f4c7fbbc4c73a1711f20cec6132ce2afa0 /lib/internal
parent10642d625ef528c209f30bb10cd4c2ba4abfea8a (diff)
downloadandroid-node-v8-55a1889af7159adaba59946a8139cfea12744819.tar.gz
android-node-v8-55a1889af7159adaba59946a8139cfea12744819.tar.bz2
android-node-v8-55a1889af7159adaba59946a8139cfea12744819.zip
lib: make internal API warning more direct
Before: These APIs are exposed only for testing and are not tracked by any versioning system or deprecation process. After: These APIs are for internal testing only. Do not use them. PR-URL: https://github.com/nodejs/node/pull/25125 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Diffstat (limited to 'lib/internal')
-rw-r--r--lib/internal/test/binding.js3
-rw-r--r--lib/internal/test/heap.js3
2 files changed, 2 insertions, 4 deletions
diff --git a/lib/internal/test/binding.js b/lib/internal/test/binding.js
index 17f1574efc..882ea90093 100644
--- a/lib/internal/test/binding.js
+++ b/lib/internal/test/binding.js
@@ -1,8 +1,7 @@
'use strict';
process.emitWarning(
- 'These APIs are exposed only for testing and are not ' +
- 'tracked by any versioning system or deprecation process.',
+ 'These APIs are for internal testing only. Do not use them.',
'internal/test/binding');
module.exports = { internalBinding };
diff --git a/lib/internal/test/heap.js b/lib/internal/test/heap.js
index 61fe5916fd..3f4a905fc5 100644
--- a/lib/internal/test/heap.js
+++ b/lib/internal/test/heap.js
@@ -1,8 +1,7 @@
'use strict';
process.emitWarning(
- 'These APIs are exposed only for testing and are not ' +
- 'tracked by any versioning system or deprecation process.',
+ 'These APIs are for internal testing only. Do not use them.',
'internal/test/heap');
const { createHeapDump, buildEmbedderGraph } = internalBinding('heap_utils');