From b457294cb629cdc67736fb00ab9d25c834f46c67 Mon Sep 17 00:00:00 2001 From: Bryan Powell Date: Mon, 27 Jan 2020 15:35:46 -0800 Subject: [PATCH] DOCS: Update link to V8 flag definitions (#157) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0e3be1a..6f13f0a 100644 --- a/README.md +++ b/README.md @@ -273,7 +273,7 @@ context.eval js The same code without the harmony runtime flag results in a `MiniRacer::RuntimeError: RangeError: Maximum call stack size exceeded` exception. Please refer to http://node.green/ as a reference on other harmony features. -A list of all V8 runtime flags can be found using `node --v8-options`, or else by perusing [the V8 source code for flags (make sure to use the right version of V8)](https://github.com/v8/v8/blob/master/src/flag-definitions.h). +A list of all V8 runtime flags can be found using `node --v8-options`, or else by perusing [the V8 source code for flags (make sure to use the right version of V8)](https://github.com/v8/v8/blob/master/src/flags/flag-definitions.h). Note that runtime flags must be set before any other operation (e.g. creating a context, a snapshot or an isolate), otherwise an exception will be thrown.