|
8 | 8 |
|
9 | 9 | **esast** is a specification for representing [JavaScript][] as an abstract
|
10 | 10 | [syntax tree][syntax-tree].
|
11 |
| -It implements the [**unist**][unist] spec. |
| 11 | +It implements the **[unist][]** spec. |
12 | 12 |
|
13 | 13 | This document may not be released.
|
14 | 14 | See [releases][] for released documents.
|
@@ -142,16 +142,22 @@ X and Y are both referenced in an array at a field on node Y.
|
142 | 142 |
|
143 | 143 | See the [unist list of utilities][utilities] for more utilities.
|
144 | 144 |
|
145 |
| -* [`estree-util-build-jsx`](https://github.com/wooorm/estree-util-build-jsx) |
146 |
| - — Transform JSX to function calls |
147 |
| -* [`estree-util-is-identifier-name`](https://github.com/wooorm/estree-util-is-identifier-name) |
148 |
| - — Check if something can be an identifier name |
| 145 | +* [`estree-util-attach-comments`](https://github.com/syntax-tree/estree-util-attach-comments) |
| 146 | + — attach comments to estree nodes |
| 147 | +* [`estree-util-build-jsx`](https://github.com/syntax-tree/estree-util-build-jsx) |
| 148 | + — transform JSX to function calls |
| 149 | +* [`estree-util-is-identifier-name`](https://github.com/syntax-tree/estree-util-is-identifier-name) |
| 150 | + — check if something can be an identifier name |
149 | 151 | * [`estree-util-value-to-estree`](https://github.com/remcohaszing/estree-util-value-to-estree)
|
150 |
| - — Convert a JavaScript value to an estree expression |
| 152 | + — convert a JavaScript value to an estree expression |
| 153 | +* [`estree-util-to-js`](https://github.com/syntax-tree/estree-util-to-js) |
| 154 | + — serialize as JavaScript |
151 | 155 | * [`estree-util-visit`](https://github.com/syntax-tree/estree-util-visit)
|
152 |
| - — Visit nodes |
| 156 | + — visit nodes |
153 | 157 | * [`esast-util-from-estree`](https://github.com/syntax-tree/esast-util-from-estree)
|
154 |
| - — Transform from estree |
| 158 | + — transform from estree |
| 159 | +* [`esast-util-from-js`](https://github.com/syntax-tree/esast-util-from-js) |
| 160 | + — parse from JavaScript |
155 | 161 |
|
156 | 162 | Please use either `estree-util-` (if it works with all ESTrees, preferred)
|
157 | 163 | or `esast-util-` (if it uses on esast specific features) as a prefix.
|
@@ -206,7 +212,7 @@ abide by its terms.
|
206 | 212 | ## Acknowledgments
|
207 | 213 |
|
208 | 214 | The initial release of this project was authored by
|
209 |
| -[**@wooorm**](https://github.com/wooorm). |
| 215 | +**[@wooorm](https://github.com/wooorm)**. |
210 | 216 |
|
211 | 217 | ## License
|
212 | 218 |
|
|
0 commit comments