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`