fluent.syntax 0.11.0
Pre-release
Pre-release
-
API enhancements
There are two new APIs in
fluent.syntax.ast
,Visitor
andTransformer
.
Use these APIs for read-only iteration over AST trees, and in-place mutation
of AST trees, respectively. There's also a new methodBaseNode.clone
,
which can be used to create a deep copy of an AST node. -
DEPRECATIONS
The API
BaseNode.traverse
is deprecated and will be removed in a future
release. Please adjust your code to theVisitor
orTransformer
APIs.