UNPKG

@specs-feup/lara

Version:

A js port of the popular framework for building source-to-source compilers

10 lines (8 loc) 153 B
/** * Enumeration of AST traversal types. */ enum TraversalType { PREORDER = "preorder", POSTORDER = "postorder", } export default TraversalType;