Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine du Hamel <duhamelantoine1995@gmail.com>2020-09-17 19:53:37 +0300
committerRich Trott <rtrott@gmail.com>2020-10-01 16:19:25 +0300
commit57f1e3224e522f9a6795e42e0332fc36f8befb2a (patch)
tree5df861a4f4dd03ca31f10abdd8e0f7cc681bbfd5 /doc/api/vm.md
parentecf5060a42a5cd073ed4200e80afae1a79178bba (diff)
doc: sort md references in ASCII order
Refs: https://github.com/nodejs/node/pull/35244 PR-URL: https://github.com/nodejs/node/pull/35191 Fixes: https://github.com/nodejs/node/issues/35189 Reviewed-By: Derek Lewis <DerekNonGeneric@inf.is> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Diffstat (limited to 'doc/api/vm.md')
-rw-r--r--doc/api/vm.md20
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/api/vm.md b/doc/api/vm.md
index 69dea1866d7..4fb4ead6955 100644
--- a/doc/api/vm.md
+++ b/doc/api/vm.md
@@ -1308,6 +1308,16 @@ inside a `vm.Context`, functions passed to them will be added to global queues,
which are shared by all contexts. Therefore, callbacks passed to those functions
are not controllable through the timeout either.
+[Cyclic Module Record]: https://tc39.es/ecma262/#sec-cyclic-module-records
+[ECMAScript Module Loader]: esm.md#esm_modules_ecmascript_modules
+[Evaluate() concrete method]: https://tc39.es/ecma262/#sec-moduleevaluation
+[GetModuleNamespace]: https://tc39.es/ecma262/#sec-getmodulenamespace
+[HostResolveImportedModule]: https://tc39.es/ecma262/#sec-hostresolveimportedmodule
+[Link() concrete method]: https://tc39.es/ecma262/#sec-moduledeclarationlinking
+[Module Record]: https://www.ecma-international.org/ecma-262/#sec-abstract-module-records
+[Source Text Module Record]: https://tc39.es/ecma262/#sec-source-text-module-records
+[Synthetic Module Record]: https://heycam.github.io/webidl/#synthetic-module-records
+[V8 Embedder's Guide]: https://v8.dev/docs/embed#contexts
[`ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING`]: errors.md#ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING
[`ERR_VM_MODULE_STATUS`]: errors.md#ERR_VM_MODULE_STATUS
[`Error`]: errors.md#errors_class_error
@@ -1319,16 +1329,6 @@ are not controllable through the timeout either.
[`vm.createContext()`]: #vm_vm_createcontext_contextobject_options
[`vm.runInContext()`]: #vm_vm_runincontext_code_contextifiedobject_options
[`vm.runInThisContext()`]: #vm_vm_runinthiscontext_code_options
-[Cyclic Module Record]: https://tc39.es/ecma262/#sec-cyclic-module-records
-[ECMAScript Module Loader]: esm.md#esm_modules_ecmascript_modules
-[Evaluate() concrete method]: https://tc39.es/ecma262/#sec-moduleevaluation
-[GetModuleNamespace]: https://tc39.es/ecma262/#sec-getmodulenamespace
-[HostResolveImportedModule]: https://tc39.es/ecma262/#sec-hostresolveimportedmodule
-[Link() concrete method]: https://tc39.es/ecma262/#sec-moduledeclarationlinking
-[Module Record]: https://www.ecma-international.org/ecma-262/#sec-abstract-module-records
-[Source Text Module Record]: https://tc39.es/ecma262/#sec-source-text-module-records
-[Synthetic Module Record]: https://heycam.github.io/webidl/#synthetic-module-records
-[V8 Embedder's Guide]: https://v8.dev/docs/embed#contexts
[contextified]: #vm_what_does_it_mean_to_contextify_an_object
[global object]: https://es5.github.io/#x15.1
[indirect `eval()` call]: https://es5.github.io/#x10.4.2