From 6a38dba104915b5bc3627ace69836c94778b81ff Mon Sep 17 00:00:00 2001 From: James Talmage Date: Tue, 24 Feb 2015 19:32:26 -0500 Subject: [PATCH] Link to ast-types in the Readme --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index f3358825..a98ce061 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,8 @@ var code = [ var ast = recast.parse(code); ``` Now do *whatever* you want to `ast`. Really, anything at all! + +See [ast-types](https://github.com/benjamn/ast-types) (especially the [def/core.js](https://github.com/benjamn/ast-types/blob/master/def/core.js)) module for a thorough overview of the `ast` api. ```js // Grab a reference to the function declaration we just parsed. var add = ast.program.body[0];