From f3973c8397351c95f9eb7d5a24202ae58ea288cb Mon Sep 17 00:00:00 2001 From: Sam Saccone Date: Wed, 1 Jul 2015 15:41:15 -0700 Subject: [PATCH] :memo: clarify how it inherits this --- 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 d457a4c375..3fec49b615 100644 --- a/doc/node-props.md +++ b/doc/node-props.md @@ -8,4 +8,4 @@ These are properties babel stores in AST node objects for internal use, as oppos Stores a representation of a node's position in the tree and relationship to other nodes. ## `shadow` -A truthy value on a function node triggers the [shadow-functions transformer](/src/babel/transformation/transformers/internal/shadow-functions.js), which transforms the node so that it references (or inherits) `arguments` and `this` from the parent scope. It is invoked for arrow functions, for example. +A truthy value on a function node triggers the [shadow-functions transformer](/src/babel/transformation/transformers/internal/shadow-functions.js), which transforms the node so that it references (or inherits) `arguments` and the `this` context from the parent scope. It is invoked for arrow functions, for example.