From cbf5575c45d3534df7d4e48f626b9dbecea5d1f8 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 --- 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 824fb598da1bb5..0fc796450739ac 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`