From 3e82263877f8e26dd7165bf800ddaa505e6c7642 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Sat, 20 Feb 2021 05:25:12 -0800 Subject: [PATCH] doc: alphabetize vm Module class properties MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/37451 Reviewed-By: Michaƫl Zasso Reviewed-By: Darshan Sen Reviewed-By: Luigi Pinca --- doc/api/vm.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/api/vm.md b/doc/api/vm.md index e5dcb7b10dd470..a19e6a5211e92c 100644 --- a/doc/api/vm.md +++ b/doc/api/vm.md @@ -532,6 +532,12 @@ This method cannot be called while the module is being evaluated Corresponds to the [Evaluate() concrete method][] field of [Cyclic Module Record][]s in the ECMAScript specification. +### `module.identifier` + +* {string} + +The identifier of the current module, as set in the constructor. + ### `module.link(linker)` * `linker` {Function} @@ -616,12 +622,6 @@ Other than `'errored'`, this status string corresponds to the specification's `'evaluated'` in the specification, but with `[[EvaluationError]]` set to a value that is not `undefined`. -### `module.identifier` - -* {string} - -The identifier of the current module, as set in the constructor. - ## Class: `vm.SourceTextModule`