From 456accb4b3d20492af5e3020e066a6d9d226a36a Mon Sep 17 00:00:00 2001 From: Sam Saccone Date: Wed, 1 Jul 2015 15:37:20 -0700 Subject: [PATCH] :memo: Add link to ESTree --- doc/node-props.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/node-props.md b/doc/node-props.md index b44470d196..d457a4c375 100644 --- a/doc/node-props.md +++ b/doc/node-props.md @@ -1,5 +1,5 @@ # Properties of nodes -These are properties babel stores in AST node objects for internal use, as opposed to properties that are part of the AST spec (ESTree at the time of this writing). +These are properties babel stores in AST node objects for internal use, as opposed to properties that are part of the AST spec ([ESTree](https://github.com/estree/estree) at the time of this writing). ## `_blockHoist` `node._blockHoist != null` triggers the [block-hoist transformer](/src/babel/transformation/transformers/internal/block-hoist.js). Value should be `true` or an integer in the range `0..3`. `true` is equivalent to `2`. The value indicates whether the node should be hoisted and to what degree. See the source code for more detailed information.