From 4cd44203def7ab6e8a8f3125807928147012f684 Mon Sep 17 00:00:00 2001 From: Simen Bekkhus Date: Sat, 26 May 2018 23:05:45 +0100 Subject: [PATCH] doc: remove invalid `vm.Script` arguments MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/20984 Fixes: https://github.com/nodejs/node/issues/20982 Reviewed-By: Gus Caplan Reviewed-By: Michaël Zasso Reviewed-By: Ruben Bridgewater Reviewed-By: Trivikram Kamat Reviewed-By: Colin Ihrig Reviewed-By: Benjamin Gruenbaum Reviewed-By: Tiancheng "Timothy" Gu Reviewed-By: Luigi Pinca Reviewed-By: Tobias Nießen Reviewed-By: James M Snell --- doc/api/vm.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/doc/api/vm.md b/doc/api/vm.md index cc9b3135381dad..ff2f8c4ad0a41d 100644 --- a/doc/api/vm.md +++ b/doc/api/vm.md @@ -421,12 +421,6 @@ changes: in stack traces produced by this script. * `columnOffset` {number} Specifies the column number offset that is displayed in stack traces produced by this script. - * `displayErrors` {boolean} When `true`, if an [`Error`][] error occurs - while compiling the `code`, the line of code causing the error is attached - to the stack trace. - * `timeout` {number} Specifies the number of milliseconds to execute `code` - before terminating execution. If execution is terminated, an [`Error`][] - will be thrown. * `cachedData` {Buffer} Provides an optional `Buffer` with V8's code cache data for the supplied source. When supplied, the `cachedDataRejected` value will be set to either `true` or `false` depending on acceptance of the data