Skip to content

fluent.syntax 0.11.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@Pike Pike released this 14 Feb 15:44
  • API enhancements

    There are two new APIs in fluent.syntax.ast, Visitor and Transformer.
    Use these APIs for read-only iteration over AST trees, and in-place mutation
    of AST trees, respectively. There's also a new method BaseNode.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 the Visitor or Transformer APIs.